您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關C#如何實現天氣預報功能?,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
引用部分
由于本次是控制臺應用,就沒有頁面設計了。在VS中新建控制臺程序后,右擊“引用”——“添加服務引用”。
在“添加服務引用”左下角選擇“高級”。
在“服務引用設置中”選擇左下角的“添加web引用”。
在其中輸入天氣預報提取網址的url:
http://www.webxml.com.cn/WebServices/WeatherWebService.asmx
至此,引用功能就已完成。該網站提供了很多查詢方法,此處我們使用的是getWeatherCityName(),方法詳細內容如下:
當然,你也可以轉到該url查看更多定義,選擇適合你的方法。
代碼實現部分
Main方法里直接引用:
WeatherWebService myweather = new WeatherWebService(); string[] myweathers = myweather.getWeatherbyCityName("鄭州"); for (int i = 0; i < myweathers.Length;i++ ) { Console.WriteLine(myweathers[i]); }
傳入的值盡量不要帶“市”,返回的數組循環輸出后結果如下:
其中各項所代表的含義可以查看上方官網的說明,這里為了讓布局好看一點,讓重點突出一點,可以使用到控制臺的字體顏色轉換語句:
Console.ForegroundColor = ConsoleColor.顏色;
完善后的代碼如下:
WeatherWebService myweather = new WeatherWebService(); string[] myweathers = myweather.getWeatherbyCityName("鄭州"); Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine("今日天氣:\n更新時間:" + myweathers[4]); Console.WriteLine("當前選擇地區:" + myweathers[0] + "_" + myweathers[1] + "\n"); Console.ForegroundColor = ConsoleColor.White; Console.Write(myweathers[6] + "(今日) 風向&風力:" + myweathers[7]); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine(" 氣溫:" + myweathers[5] + "\n"); Console.ForegroundColor = ConsoleColor.White; Console.WriteLine("當前實況(數據每2.5小時左右自動更新一次):\n" + myweathers[10] + myweathers[11]); Console.Write(myweathers[13] + "(明天) 風向&風力:" + myweathers[14]); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine(" 氣溫:" + myweathers[12] + "\n"); Console.ForegroundColor = ConsoleColor.White; Console.Write(myweathers[18] + "(后天) 風向&風力:" + myweathers[19]); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine(" 氣溫:" + myweathers[17] + "\n"); Console.ForegroundColor = ConsoleColor.White;
當然,你也可以在后面加一個判斷,輸入1的話可以查詢其他城市,然后獲取輸入的值,傳入方法中。如果感興趣的話可以看一下源碼,這里就不再過多展示。
運行效果
關于C#如何實現天氣預報功能?就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。