查詢天氣的服務引用,有相似的吧;

首先要引用這個服務,http://www.webxml.com.cn/Webservices/WeatherWebService.asmxweb

添加服務和引用---->轉到---->高級---->添加WEB應用---->添加引用       到此OK。                           1個text,1個button,2個lable數組

private void btn_search_Click(object sender, EventArgs e)
{
cn.com.webxml.www.WeatherWebService w = new cn.com.webxml.www.WeatherWebService();
string[] s = new string[23];
string city = text_city.Text.Trim();
s = w.getWeatherbyCityName(city);
if(s[8]=="")
{
MessageBox.Show("暫不支持查詢的城市");
}
else
{
label_gaikuang.Text = s[1] + "" + s[6];
label_shikuang.Text = s[10];
MessageBox.Show(s[3]+"\n\r"+s[4]+s[5]+s[7]+s[8]+s[9]);
}
}xml

 w.getWeatherbyCityName(city);    返回的是一個覺得數組,有興趣的話能夠看看裏面都是什麼內容;ci

相關文章
相關標籤/搜索