码迷,mamicode.com
首页 > Web开发 > 详细

.Net 调用中国气象台Web Service

时间:2018-08-06 23:23:42      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:==   内容   this   [1]   csharp   name   text   new   查询   

接口地址http://www.webxml.com.cn/WebServices/WeatherWebService.asmx
调用步骤:项目添加服务引用-高级-添加web引用


简单代码:
   web服务名.WeatherWebService w = new web服务名.WeatherWebService();
            //把webservice当做一个类来操作  
            string[] s = new string[23];//声明string数组存放返回结果  
            string city = this.textBox1.Text.Trim();//获得文本框录入的查询城市  
            s = w.getWeatherbyCityName(city);
            //以文本框内容为变量实现方法getWeatherbyCityName  
            if (s[8] == "")
            {
                MessageBox.Show("暂时不支持您查询的城市");
            }
            else
            {
                this.GaiKuang.Text = s[1] + " " + s[6];
                richTextBox1.Text = s[10];
            }

  

.Net 调用中国气象台Web Service

标签:==   内容   this   [1]   csharp   name   text   new   查询   

原文地址:https://www.cnblogs.com/iWaitYou/p/9434048.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!