当前位置:   article > 正文

html自动获取天气预报,根据访问用户IP地址自动获取天气预报

网页 天气插件 根据访问ip

using System;

using System.Web;

using System.Text;

using System.Text.RegularExpressions;

using System.IO;

using System.Net;

public class weather : IHttpHandler {

///

/// 获取客户ip地址

///

///

private string GetIP()

{

string ip = HttpContext.Current.Request.ServerVariables["http_x_forwarded_for"];

if (!UserCheck.IsNotNull(ip)) ip = HttpContext.Current.Request.ServerVariables["remote_addr"];

return ip;

}

///

/// 从字符串中获取天气,温度和风力

///

/// 内容字符串

/// 是否为今天

///

private string[] Split(string str, bool IsToday)

{

string s1 = ""//风向,只有今天才有

, s2 = ""//天气,非今天

, s3 = ""//温度,非今天

, s4 = "";//风力

Regex r;

Match m;

if (IsToday)

{

r = new Regex("风向:([//s//S]+?)", RegexOptions.Compiled | RegexOptions.IgnoreCase);

m = r.Match(str);

s1 = m.Groups[1].Value.Trim();

}

else

{

r 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/人工智能uu/article/detail/906576
推荐阅读
相关标签
  

闽ICP备14008679号