简单实现WebService 获取当地天气

什么是WebService

自己看教程:https://www.w3school.com.cn/webservices/index.asp

这个项目有许多WebService 项目

http://www.webxml.com.cn/zh_cn/web_services.aspx

今天我们做------国内手机号码归属地查询WEB服务

新建一个普通的java项目cmd进入刚才 Copy Path 的目录    D:\LearnWebService\webservice_network_phonenumber\src

 

 

输入 wsimport -s . http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl

输入 wsimport -s . WSDL链接  以后变得只用这一步

如果你想搞一个 获取天气 直接换成 天气 WSDL链接 http://ws.webxml.com.cn/WebServices/WeatherWS.asmx?wsdl

例如:wsimport -s . http://ws.webxml.com.cn/WebServices/WeatherWS.asmx?wsdl

这样就会生成相关代码 阅读http://ws.webxml.com.cn/WebServices/WeatherWS.asmx?wsdl里面的文件  

 

新建个客户端

public class Client {
    public static void main(String[] args) {
        MobileCodeWS mobileCodeWS = new MobileCodeWS();//MobileCodeWS 在wsdl中找的  
        MobileCodeWSSoap port = mobileCodeWS.getPort(MobileCodeWSSoap.class);在wsdl中找的 
        String mobileCodeInfo = port.getMobileCodeInfo("18333778654", null
        );
        System.out.println(mobileCodeInfo);
    }

}

执行结果

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值