中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#如何實現天氣預報功能?

發布時間:2020-06-23 11:30:17 來源:億速云 閱讀:572 作者:清晨 欄目:編程語言

這篇文章將為大家詳細講解有關C#如何實現天氣預報功能?,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

引用部分

由于本次是控制臺應用,就沒有頁面設計了。在VS中新建控制臺程序后,右擊“引用”——“添加服務引用”。

在“添加服務引用”左下角選擇“高級”。

C#如何實現天氣預報功能?

在“服務引用設置中”選擇左下角的“添加web引用”。

C#如何實現天氣預報功能?

在其中輸入天氣預報提取網址的url:

http://www.webxml.com.cn/WebServices/WeatherWebService.asmx

C#如何實現天氣預報功能?

至此,引用功能就已完成。該網站提供了很多查詢方法,此處我們使用的是getWeatherCityName(),方法詳細內容如下:

C#如何實現天氣預報功能?

當然,你也可以轉到該url查看更多定義,選擇適合你的方法。

代碼實現部分

Main方法里直接引用:

 WeatherWebService myweather = new WeatherWebService();
      string[] myweathers = myweather.getWeatherbyCityName("鄭州");
      for (int i = 0; i < myweathers.Length;i++ )
      {  Console.WriteLine(myweathers[i]);  }

傳入的值盡量不要帶“市”,返回的數組循環輸出后結果如下:

C#如何實現天氣預報功能?

其中各項所代表的含義可以查看上方官網的說明,這里為了讓布局好看一點,讓重點突出一點,可以使用到控制臺的字體顏色轉換語句:

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#如何實現天氣預報功能?

關于C#如何實現天氣預報功能?就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

佛冈县| 怀柔区| 枣庄市| 海淀区| 固原市| 许昌市| 天津市| 白山市| 咸阳市| 龙井市| 贵定县| 宕昌县| 民和| 南投县| 海伦市| 柘城县| 仁化县| 中山市| 罗田县| 中牟县| 四川省| 金门县| 甘南县| 屯门区| 晋宁县| 增城市| 淳安县| 台安县| 洪雅县| 都昌县| 泾川县| 温州市| 会理县| 中牟县| 泾阳县| 阿拉善左旗| 桂平市| 隆林| 武安市| 增城市| 三亚市|