博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
.Net 调用中国气象台Web Service
阅读量:6817 次
发布时间:2019-06-26

本文共 705 字,大约阅读时间需要 2 分钟。

接口地址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];            }

  

转载于:https://www.cnblogs.com/ZaraNet/p/9434048.html

你可能感兴趣的文章
了解Web及网络基础(一)
查看>>
C#实战--对齐输出
查看>>
nginx下使用memcache
查看>>
利用反射给类中方法加钩子
查看>>
【PHP面向对象】连贯操作实现
查看>>
POJ3685 Matrix(嵌套二分)
查看>>
Qt5.5.1+vs2013
查看>>
[转载] Linux关闭Tomcat为什么要用kill, 而不是shutdown.sh
查看>>
第三十课、Qt中的文本编辑组件------------------狄泰软件学院
查看>>
Android中的通知—Notification
查看>>
Oracle通过SCN做增量备份修复DG
查看>>
几个获取Windows系统信息的Delphi程序
查看>>
Mysql安装出现=========== install/remove of the Service Denied
查看>>
SQL如何修改被计算字段引用的字段类型
查看>>
HTTPS加密原理
查看>>
javascript Ajax 基本使用和封装
查看>>
logger日志的几个方法
查看>>
恼人的设计模式(转载)
查看>>
expect模块的使用,主要没装包折腾一晚上
查看>>
awk多列匹配
查看>>