web service005——查询电话号码归属地信息

Posted 江州益彤

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web service005——查询电话号码归属地信息相关的知识,希望对你有一定的参考价值。



TelephoneInvoke

package com.dgut.client;

import com.dgut.mobile.MobileCodeWS;
import com.dgut.mobile.MobileCodeWSSoap;

public class TelephoneInvoke {
	public static void main(String[] args) {
		MobileCodeWSSoap mobileCodeWSSoap = new MobileCodeWS().getMobileCodeWSSoap();

		String rs = mobileCodeWSSoap.getMobileCodeInfo("具体电话号码", null);

		System.out.println(rs);
	}
}

通过wsimport调用的流程

拓展,将查询电话号码归属地信息接口函数发布

package com.dgut.client;

import javax.jws.WebService;
import javax.xml.ws.Endpoint;


import com.dgut.mobile.MobileCodeWS;
import com.dgut.mobile.MobileCodeWSSoap;

@WebService
public class TelephoneInvoke {
	public static void main(String[] args) {
		//发布telephoneInfo接口
		Endpoint.publish("http://localhost:8989/helloworld", new TelephoneInvoke());

	}
	
	public String telephoneInfo(String phone) {
		MobileCodeWSSoap mobileCodeWSSoap = new MobileCodeWS().getMobileCodeWSSoap();

		String rs = mobileCodeWSSoap.getMobileCodeInfo(phone, null);

		return rs;
	}
}

以上是关于web service005——查询电话号码归属地信息的主要内容,如果未能解决你的问题,请参考以下文章

初识webservice 服务

原创Java实现手机号码归属地查询

手机号码的归属地查询方法?

如何查询手机号码的归属地?

更多查询手机号码归属地的方法?

如何查询手机号码的归属地?