java系统怎么设置号码归属地

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java系统怎么设置号码归属地相关的知识,希望对你有一定的参考价值。

package test;

import java.io.InputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.URL;
import java.net.URLConnection;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

import org.w3c.dom.NodeList;

public class Mobile 
private static String getSoapRequest(String mobileCode) 

StringBuilder sb = new StringBuilder();

sb.append("<?xml version=\\"1.0\\" encoding=\\"utf-8\\"?>"
+ "\\n"

+ "<soap:Envelope xmlns:xsi=\\"http://www.w3.org/2001/XMLSchema-instance\\""
+ " "

+ "xmlns:xsd=\\"http://www.w3.org/2001/XMLSchema\\""
+ " "

+ "xmlns:soap=\\"http://schemas.xmlsoap.org/soap/envelope/\\">"
+ "\\n"

+ "<soap:Body>" + "\\n"

+ "<getMobileCodeInfo" + " "
+ "xmlns=\\"http://WebXml.com.cn/\\">" + "\\n"

+ "<mobileCode>" + mobileCode + "</mobileCode>" + "\\n"

+ "<userID></userID>" + "\\n"

+ "</getMobileCodeInfo>" + "\\n"

+ "</soap:Body>" + "\\n"

+ "</soap:Envelope>"

);

return sb.toString();



private static InputStream getSoapInputStream(String mobileCode) 

try 

String soap = getSoapRequest(mobileCode);

if (soap == null)

return null;

URL url = new URL(
"http://www.webxml.com.cn/WebServices/MobileCodeWS.asmx");

URLConnection conn = url.openConnection();

conn.setUseCaches(false);

conn.setDoInput(true);

conn.setDoOutput(true);

conn.setRequestProperty("Content-Type", "text/xml; charset=utf-8");

conn.setRequestProperty("Content-Length", Integer.toString(soap
.length()));

conn.setRequestProperty("SOAPAction",
"http://WebXml.com.cn/getMobileCodeInfo");

OutputStream os = conn.getOutputStream();

OutputStreamWriter osw = new OutputStreamWriter(os, "UTF-8");

osw.write(soap);
osw.flush();

osw.close();

InputStream is = conn.getInputStream();

return is;

 catch (Exception e) 

e.printStackTrace();

return null;





public static String getMobileNoTrack(String mobileCode) 

try 

org.w3c.dom.Document document = null;

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();

dbf.setNamespaceAware(true);

InputStream is = getSoapInputStream(mobileCode);

DocumentBuilder db = dbf.newDocumentBuilder();

document = db.parse(is);

NodeList nl = document
.getElementsByTagName("getMobileCodeInfoResult");

StringBuffer sb = new StringBuffer();

for (int i = 0; i < nl.getLength(); i++) 

org.w3c.dom.Node n = nl.item(i);

if (n.getFirstChild().getNodeValue().equals("手机号码错误")) 

sb = new StringBuffer("#");

System.out.println("手机号码输入有误");

break;



sb.append(n.getFirstChild().getNodeValue() + "\\n");



is.close();

return sb.toString();

 catch (Exception e) 

e.printStackTrace();

return null;





public static void main(String[] args) 
// System.out.println(Moblie.getSoapRequest("13272303204"));
// System.out.println(Moblie.getSoapInputStream("13226678785"));
System.out.println(Mobile.getMobileNoTrack("1583759999"));

这段代码也是我在网上找的,然后在Myeclipse8.5M2中测试通过的;根据输入的电话号码,可以查询号码归属地.不知道是否你需要的答案...

参考技术A java中利用爬虫的思路去完成这个功能。这里大概思路是通过HttpClient去模拟提交那些网站的查询功能,这里是www.ip138.com,然后通过正则表达式去解析HttpClient相应内容,从里面抽取出手机归属地。同时对要查询的手机进行一个验证,具体代码请看如下:
import java.util.regex.Matcher;
import java.util.regex.Pattern;

import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.params.HttpMethodParams;
/**
* 通过手机号码,获得该号码的归属地
*
* @author Administrator
*
*/
public class MobileFromUtil
//正则表达式,抽取手机归属地
public static final String REGEX_GET_MOBILE=
"(?is)(<tr[^>]+>[\\s]*<td[^>]+>[\\s]*卡号归属地[\\s]*</td>[\\s]*<td[^>]+>([^<]+)</td>[\\s]*</tr>)"; //2:from
//正则表达式,审核要获取手机归属地的手机是否符合格式,可以只输入手机号码前7位
public static final String REGEX_IS_MOBILE=
"(?is)(^1[3|4|5|8][0-9]\\d4,8$)";

/**
* 获得手机号码归属地
*
* @param mobileNumber
* @return
* @throws Exception
*/
public static String getMobileFrom(String mobileNumber) throws Exception
if(!veriyMobile(mobileNumber))
throw new Exception("不是完整的11位手机号或者正确的手机号前七位");

HttpClient client=null;
PostMethod method=null;
NameValuePair mobileParameter=null;
NameValuePair actionParameter=null;
int httpStatusCode;

String htmlSource=null;
String result=null;

try
client=new HttpClient();
client.getHostConfiguration().setHost("www.ip138.com", 8080, "http");
method=new PostMethod("/search.asp");
mobileParameter=new NameValuePair("mobile",mobileNumber);
actionParameter=new NameValuePair("action","mobile");
method.setRequestBody(new NameValuePair[] actionParameter,mobileParameter );
//设置编码
method.getParams().setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET, "GB2312");

client.executeMethod(method);
httpStatusCode=method.getStatusLine().getStatusCode();
if(httpStatusCode!=200)
throw new Exception("网页内容获取异常!Http Status Code:"+httpStatusCode);


htmlSource=method.getResponseBodyAsString();
if(htmlSource!=null&&!htmlSource.equals(""))
result=parseMobileFrom(htmlSource);

catch (RuntimeException e)
// TODO Auto-generated catch block
e.printStackTrace();
finally
method.releaseConnection();


return result;



/**
* 从www.ip138.com返回的结果网页内容中获取手机号码归属地,结果为:省份 城市
*
* @param htmlSource
* @return
*/
public static String parseMobileFrom(String htmlSource)
Pattern p=null;
Matcher m=null;
String result=null;

p=Pattern.compile(REGEX_GET_MOBILE);
m=p.matcher(htmlSource);

while(m.find())
if(m.start(2)>0)
result=m.group(2);
result=result.replaceAll(" ", " ");



return result;



/**
* 验证手机号
* @param mobileNumber
* @return
*/
public static boolean veriyMobile(String mobileNumber)
Pattern p=null;
Matcher m=null;

p=Pattern.compile(REGEX_IS_MOBILE);
m=p.matcher(mobileNumber);

return m.matches();


/**
* 测试
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception
System.out.println(getMobileFrom("13888888888"));

手机号码归属地怎么分辨

手机号码归属地可以通过百度查询,在百度搜索,输入“电话号码归属地查询”或者直接输入自己的手机号码,再点击“百度一下”,就可以看到查询结果。具体操作如下:

工具/原料:手机

1、首先在我们的手机打开手机百度网站。

2、然后找到输入“电话号码归属地查询”,点击“百度一下”。

3、就可以在这个页面直接输入电话号码,点击“确定”。

4、紧接着就可以看到自己的手机号码归属地,例如,本手机归属地为上海 中国联通。

参考技术A 手机号码由11位数字组成,前三位为运营商代码,中间4位为地区代码,后四位为用户代码。
手机号码归属地是有号码前三位加中间4位决定的,每个号段在发布放号的时候都设置好了归属地信息,这个会统计进入专门的号码归属地数据库中,将数据库保存到手机,来电后就能自动设别归属地信息了。详情
    在线客服官方服务
      官方网站费用查询充值交费业务办理宽带提速
参考技术B 现在的手机都可以,打下电话立刻挂掉就会看到 参考技术C 可以把他放在百度里搜索,然后大部分都有归属地、运营商等信息。
如有帮助请采纳。
参考技术D 中间的四个数

以上是关于java系统怎么设置号码归属地的主要内容,如果未能解决你的问题,请参考以下文章

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

手机号码归属地怎么分辨

查手机归属地怎么查

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

php 手机号归属地显示查询

怎么查手机号码归属地查询