文件名称:谷歌天气API-C# 代码
文件大小:1KB
文件格式:ZIP
更新时间:2013-07-02 12:01:17
天气API 谷歌天气API 谷歌天气API-C#
天气API 谷歌天气API 谷歌天气API-C#
代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text;
using System.Xml;
using System.Net;
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
/*
* XML µØÖ·
* http://www.google.com/ig/api?weather=FuZhou&hl=zh-cn
*
* ²ÎÊý˵Ã÷
* weather £º³ÇÊÐÃû³Æ
* hl £ºÓïÑÔ - ĬÈÏÓ¢ÎÄ
*/
int i = 0;
XmlNodeList GWP_NodeList = GoogleWeatherAPI_Parser(@"http://www.google.com/ig/api?weather=FuZhou&hl=zh-cn").SelectNodes("xml_api_reply/weather/current_conditions");
Label l = new Label();
l.Text = "ÌìÆø×´¿ö£º " + GWP_NodeList.Item(i).SelectSingleNode("condition").Attributes["data"].InnerText;
l.Text += "
";
l.Text += "ζȣº " + GWP_NodeList.Item(i).SelectSingleNode("temp_c").Attributes["data"].InnerText;
l.Text += "
";
l.Text += "滦飼 " + GWP_NodeList.Item(i).SelectSingleNode("humidity").Attributes["data"].InnerText;
l.Text += "
";
l.Text += "";
this.form1.Controls.Add(l);
}
///
【文件预览】:
Default2.aspx
Default2.aspx.cs