调用第三方webservice服务,获取电话号码归属地
方法1、http-get方式访问webservice
说明:运行main中的方法可以测试号码归属地的结果
package com.ws.one;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
/**
*
* @ClassName MobileCodeService
* @Description 调用第三方webservice服务,获取电话号码归属地
* @author Try_go
* @Date 2017年4月5日 下午9:26:38
* @version 1.0.0
*/
public class MobileCodeService {
// 1.http-get方式访问webservice
public void get(String mobileCode, String userID) throws Exception {
// 由http://www.webxml.com.cn/zh_cn/index.aspx网址中的调用说明知道url
URL url = new URL("http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo?mobileCode="
+ mobileCode + "&userID=" + userID);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setConnectTimeout(5000);
connection.setRequestMethod("GET");
if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) { // 结果码=200
InputStream is = connection.getInputStream();
ByteArrayOutputStream boas = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len = -1;
while ((len = is.read(buffer)) != -1) {
boas.write(buffer, 0, len);
}
System.out.println("GET请求获取数据:" + boas.toString());
boas.close();
is.close();
}
}
/**
* @Description 输入测试数据运行,看输出结果
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
MobileCodeService ws = new MobileCodeService();
ws.get("13071815533", "");
}
}
方法 2、使用wsimport生成本地代理来访问webservice
说明:这里先通过wsimport生成本地代理的代码,然后把代码加入到项目中使用即可。
package com.ws.two;
import java.util.List;
/**
*
* @ClassName Test
* @Description 使用wsimport生成本地代理来访问webservice
* 方法查看wsdl的说明:网址:http://ws.webxml.com.cn/WebServices/MobileCodeWS.
* asmx?WSDL 生成方法: 1、在命令提示符中输入:wsimport -s ./ -p com.ws.two
* http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?WSDL
* 然后在桌面或c盘中的用户中找到文件 说明:-s ./ 表示要转成java文件,不写生成class文件 -p 表示输出包名 -d
* 表示输出的路径
*
* @author Try_go
* @Date 2017年4月6日 下午9:44:22
* @version 1.0.0
*/
public class Test {
public static void main(String[] args) {
// 生成服务对象
MobileCodeWS ws = new MobileCodeWS();
// 取得webservice服务的访问方式
MobileCodeWSSoap mobileCodeWSSoap = ws.getMobileCodeWSSoap();
// 得到结果:1简单的数据
String result = mobileCodeWSSoap.getMobileCodeInfo("13071815544", "");
System.out.println("返回结果result:" + result);
// 得到结果:2复合的数据
ArrayOfString databaseInfo = mobileCodeWSSoap.getDatabaseInfo();
List<String> listResult = databaseInfo.getString();
for (String temp : listResult) {
System.out.println("结果,复合数据:" + temp);
}
}
}