WebService简单使用教程
Posted 116970u
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WebService简单使用教程相关的知识,希望对你有一定的参考价值。
根据说明书获取信息
代码示例:
1 import com.gyf.weather.ws.ArrayOfString; 2 import com.gyf.weather.ws.WeatherWS; 3 import com.gyf.weather.ws.WeatherWSSoap; 4 5 public class Main 6 7 public static void main(String[] args) 8 9 //由下向上看,先找到说明书中的服务WeatherWS 10 //获取服务 11 WeatherWS ws = new WeatherWS(); 12 //获取端口 13 WeatherWSSoap soap = ws.getPort(WeatherWSSoap.class); 14 15 //1.获得国外国家名称和与之对应的ID 16 /* ArrayOfString aos = soap.getRegionCountry(); 17 for (String region : aos.getString()) 18 System.out.println(region); 19 */ 20 21 //2.获得支持的城市/地区名称和与之对应的ID 22 /*ArrayOfString aos = soap.getSupportCityString("吉林"); 23 for (String city : aos.getString()) 24 System.out.println(city); 25 */ 26 27 //3.获取天气信息 28 ArrayOfString aos = soap.getWeather("吉林", ""); 29 for (String item : aos.getString()) 30 System.out.println(item); 31 32 33 34
以上是关于WebService简单使用教程的主要内容,如果未能解决你的问题,请参考以下文章
系统开发系列 之MyEclipse创建WebService详细教程和调用教程(spring框架+maven+CXF框架)
系统开发系列 之MyEclipse创建WebService详细教程和调用教程(spring框架+maven+CXF框架)