本文使用Winform (C#)調用互聯網上公開的WebServices(http://www.webxml.com.cn/WebServices/WeatherWebService.asmx)來實現天氣預報,該天氣預報 Web 服務,數據來源於××× http://www.cma.gov.cn/ ,數據每2.5小時左右自動更新一次,準確可靠。包括 340 多箇中國主要城市和 60 多個國外主要城市三日內的天氣預報數據。web
程序效果:數組
實現步驟:ide
一、引入Web服務。在VS中項目上右擊→添加服務引用。this
二、在彈出的添加服務引用窗口,錄入web服務地址和引用後的命名空間。spa
三、佈置winform窗體界面,實現代碼。核心代碼以下:orm
- private void button1_Click_1(object sender, EventArgs e)
- {
- Weather.WeatherWebServiceSoapClient w = new Weather.WeatherWebServiceSoapClient("WeatherWebServiceSoap");
- //把webservice當作一個類來操做
- string[] s = new string[23];//聲明string數組存放返回結果
- string city = this.textBox1.Text.Trim();//得到文本框錄入的查詢城市
- s = w.getWeatherbyCityName(city);
- //以文本框內容爲變量實現方法getWeatherbyCityName
- if (s[8] == "")
- {
- MessageBox.Show("暫時不支持您查詢的城市");
- }
- else
- {
- pictureBox1.Image = Image.FromFile(@"d:\p_w_picpath\" + s[8] + "");
- this.label4.Text =s[1]+" "+s[6];
- textBox2.Text = s[10];
- }
- }
四、天氣圖標可至【http://www.webxml.com.cn/p_w_picpaths/weather.zip】下載。xml
五、Web服務的各方法參數直接訪問【http://www.webxml.com.cn/WebServices/WeatherWebService.asmx】查詢,從而實現其它豐富功能,如將來天氣預報等。blog