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

调用天气预报Web Service

时间:2014-10-15 17:43:41      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:调用天气预报web service

调用天气Web Service
            i.创建项目
                项目名称:weatherclient
            ii.创建本地的wsdl文件
                文件名称:weather.wsdl
                访问:http://www.webservicex.net/globalweather.asmx?wsdl会看到文件,然后查看源码
                保存到本地。                
            iii.根据本地的wsdl文件生成调用服务端的代码
                使用wsimport -target 2.0 -keep 本地wsdl文件路径
            iv.调用
                包名:net.webservicex.client
                类名:WeatherClientTest.java
                类内容:
                public class WeatherClientTest {
                    public static void main(String[] args) {
                        GlobalWeather globalWeather = new GlobalWeather();
                        GlobalWeatherSoap gws = globalWeather.getGlobalWeatherSoap();
                        String result = gws.getWeather("shanghai", "china");
                        System.out.println(result);
                    }
                }

本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1564334

调用天气预报Web Service

标签:调用天气预报web service

原文地址:http://suyanzhu.blog.51cto.com/8050189/1564334

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