前言:
天气预报,回忆中做过那么三次。
第一次的做法是:
总结:
这种做法很麻烦,每天要开后台采数据,做成自动的,还要不半路程序自动死亡才行,而且数据库会产生大堆垃圾过时的数据。
优点是:可以采集很多信息,做成很专业的天气预报站,那时候做旅游站,天气也是重要模块,所以这种方式也很合适。
第二次:
总结:
这种做法也很郁闷,首先Webservice不好找,第二找到的如果小站提供的,随时又会挂掉了,要是人家挂掉,你要另找一个?
优点是:找到就调用,什么也不用管,菜鸟也能飞。
第三次:
总结:
优点是:不用和数据库打交道,现采现显,减少数据库压力,速度快,每天只采一次,丁点信息,缓存即可。对于天气只是装饰性的极适用。
缺点是:数据量少,不能做能专业性天气预报站。
以下介绍现采现显的实现方式
1:既然要采,当然找到有天气预报的站了,这个很好找,网上到处都是资源,只要你会采。
2:采集类,一个好的采集类,事半功倍,以下出一个简化版,足够采集天气信息
using System.Text;
using System.Net;
using System.Text.RegularExpressions; namespace CYQ.Tool
{
/// <summary>
/// 作者:路过秋天
/// 博客:http://cyq1162.cnblogs.com
/// </summary>
public class GatherHelper
{
/// <summary>
/// 返回获取的目标地址HTML全部代码
/// </summary>
/// <param name="strUrl">目标地址</param>
/// <returns></returns>
public static string GetHtmlCode(string pageUrl, Encoding encoding)
{
try
{
//返回目标页HTML代码
WebClient webclient = new WebClient();
webclient.Credentials = CredentialCache.DefaultCredentials;
byte[] buffer = webclient.DownloadData(pageUrl);
string HtmlCode = encoding.GetString(buffer);
webclient.Dispose(); //释放WebClient资源
return HtmlCode;
}
catch
{
return string.Empty;
}
}
#region 内容截取分析
/// <summary>
/// 返回根据内容开始及结束代码分析出内容
/// </summary>
/// <param name="ContentCode">内容代码</param>
/// <param name="StartCode">内容所在开始代码</param>
/// <param name="EndCode">内容所在结束代码</param>
/// <param name="index">取第几条[从1开始]</param>
/// <returns></returns>
public static string GetContent(string contentCode, string startCode, string endCode, int index)
{
string[] matchItems = null;
return GetContent(contentCode, startCode, endCode, index, out matchItems);
}
public static string GetContent(string contentCode, string startCode, string endCode, int index, out string[] matchItems)
{
matchItems = null;
if (string.IsNullOrEmpty(startCode) && string.IsNullOrEmpty(endCode))
{
return contentCode;
}
Regex regObj = new Regex(startCode + @"([\S\s]*?)" + endCode, RegexOptions.Compiled | RegexOptions.IgnoreCase);
MatchCollection matchItemList = regObj.Matches(contentCode);
if (matchItemList != null && matchItemList.Count >= index)
{
matchItems = new string[matchItemList.Count];
for (int i = 0; i < matchItemList.Count; i++)
{
matchItems[i] = matchItemList[i].Groups[1].Value;
}
index = index > 0 ? index - 1 : 0;
return matchItemList[index].Groups[1].Value;
}
return string.Empty;
}
#endregion
}
}
3:编写天气预报实体类,将采集的信息以实体返回,如果采集多个,返回就是List<实体>了
{
private string imgUrl;
/// <summary>
/// 天气图片地址
/// </summary>
public string ImgUrl
{
get { return imgUrl; }
set { imgUrl = value; }
}
private string wind;
/// <summary>
/// 天气风力
/// </summary>
public string Wind
{
get { return wind; }
set { wind = value; }
}
private string cityName;
/// <summary>
/// 天气城市名称
/// </summary>
public string CityName
{
get { return cityName; }
set { cityName = value; }
}
private string temperature;
/// <summary>
/// 天气温度
/// </summary>
public string Temperature
{
get { return temperature; }
set { temperature = value; }
}
private string description;
/// <summary>
/// 天气说明
/// </summary>
public string Description
{
get { return description; }
set { description = value; }
}
4:编写采集Soso的天气预报类
A:新建采集天气预报类:WeatherSearch
/// 作者:路过秋天
/// 博客:http://cyq1162.cnblogs.com
/// </summary>
public class WeatherSearch
{
/// <summary>
/// 数据采集来源于腾信搜搜天气预报
/// </summary>
/// <param name="cityName"></param>
/// <returns></returns>
public static WeatherInfo Get(string cityName)
{
//待实现
}
private static WeatherInfo GetFormCache(string cityName,string key)
{
object weather = HttpContext.Current.Cache.Get(key);
if (weather!=null)
{
return weather as WeatherInfo;
}
return null;
}
}
重要说明:
B:Get函数分解:
1:先读取缓存,注意缓存Key用日期做key,可以方便缓存今天和删除昨天的缓存。
{
if (string.IsNullOrEmpty(cityName))
{
return null;
}
string todayKey = cityName + DateTime.Now.ToString("yyyyMMdd");
WeatherInfo weather = GetFormCache(cityName, todayKey);
if (weather == null)
{
//待实现
}
}
2:读不到缓存就现采了,调用采集类
{
weather = new WeatherInfo();
weather.CityName = cityName;
cityName = System.Web.HttpUtility.UrlEncode(cityName + "天气", Encoding.GetEncoding("gb2312"));
string url = "http://www.soso.com/q?num=1&w=" + cityName;
//采集所有html
string html = GatherHelper.GetHtmlCode(url, Encoding.GetEncoding("gb2312"));
//接下来待实现
}
说明:
3:分析html,缩小范围,对于一大堆html,我们只要这一部分
<div class="w_main">
<ol>
<li class="w_space" title="北风4-5级"><span>今天(周五)</span>
<img src="http://cache.soso.com/zdq/wea/s_a3.png" onload="setPng(this,48,48)" />
<span>21 / 28<em>°</em>C</span><span class="w_w">多云转阵雨</span> </li>
<li title="北风3-4级"><span>明天(周六)</span>
<img src="http://cache.soso.com/zdq/wea/s_a3.png" onload="setPng(this,48,48)" />
<span>22 / 28<em>°</em>C</span><span class="w_w">多云转阵雨</span> </li>
<li title="微风"><span>后天(周日)</span>
<img src="http://cache.soso.com/zdq/wea/s_a33.png" onload="setPng(this,48,48)" />
<span>18 / 29<em>°</em>C</span><span class="w_w">多云</span> </li>
</ol>
</div>
<!--下面的也被省略-->
说明:
4:使用GetContent步步截取所需要信息
//缩小范围
html = GatherHelper.GetContent(html, "<div class=\"w_main\">", "</div>", 1);
if (string.IsNullOrEmpty(html)) { return null; }
//说明
weather.Description = GatherHelper.GetContent(html, "<span class=\"w_w\">", "</span>", 1);
//图片
weather.ImgUrl = GatherHelper.GetContent(html, "<img src=\"", "\"", 1);
//风向
weather.Wind=GatherHelper.GetContent(html, "title=\"", "\"", 1);
//温度
weather.Temperature = GatherHelper.GetContent(html, "/> <span>", "<em>", 1);
5:存入缓存并清除昨天的缓存信息[看需要展示几天的信息了]
string yesterdayKey = cityName + DateTime.Now.AddDays(-1).ToString("yyyyMMdd");
if (HttpContext.Current.Cache.Get(yesterdayKey)!=null)
{
HttpContext.Current.Cache.Remove(yesterdayKey);
}
5:界面调用
{
WeatherInfo info = WeatherSearch.Get("广州");
if (info != null)
{
litCity.Text = info.CityName;
litDescprtion.Text = info.Description;
imgUrl.ImageUrl = info.ImgUrl;
litWind.Text = info.Wind;
litTemperature.Text=info.Temperature;
}
}
6:调用结果
最后结言:
再不济手动复制-》“此文不错,值的推荐”!!
-_-...!!!
IE6好卡,鼠标又发神经,单击双击混在一起,本文写起来好辛苦~~
本文示例下载地址:CYQ.Data 轻量数据层之路 bug反馈、优化建议、最新框架下载