根據(jù)手機(jī)號(hào)碼查看位置和系統(tǒng)
業(yè)務(wù)場(chǎng)景描述
在一些項(xiàng)目中,我們會(huì)有這樣的需求,即需要開發(fā)一個(gè)API,根據(jù)用戶的手機(jī)號(hào)碼獲取對(duì)應(yīng)的位置(湖南)和制式信息(聯(lián)通)。 很多人可能會(huì)問(wèn)自己的左腦或者右腦,為什么中國(guó)三大運(yùn)營(yíng)商有這么多數(shù)字? 我們應(yīng)該怎樣做呢? ? ? 你可能會(huì)突然感到不知所措、不知所措;;;我很幸運(yùn)手機(jī)號(hào)怎么看歸屬地,你在中國(guó)13億多人口中遇見了我手機(jī)號(hào)怎么看歸屬地,你在數(shù)千個(gè)博客中選擇了我。 恭喜你,這一次,這一次,這一次你真的說(shuō)到點(diǎn)子上了,因?yàn)槲疫@個(gè)博主是上帝派來(lái)解決你的問(wèn)題的; 話不多說(shuō),您想要的就在下面。 文末還有彩蛋,別忘了點(diǎn)開哦! ! !
注:該API由阿里巴巴提供。 無(wú)論是三大運(yùn)營(yíng)商的SIM卡、阿里巴巴螞蟻卡等(第三方虛擬商戶)都可以查詢! ! !
import?com.it606.utils.TelUtil;
import?org.apache.http.*;
public?class?TelUtil{
????
????public?static?String?getTelInfo(String?tel)?{
????????CloseableHttpClient?httpClient?=?HttpClients.createDefault();
????????HttpGet?get?=?new?HttpGet("http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel="?+?tel);
????????CloseableHttpResponse?response?=?null;
????????try?{
????????????response?=?httpClient.execute(get);
????????????HttpEntity?entity?=?response.getEntity();
????????????String?telInfo?=?EntityUtils.toString(entity);
????????????String?b?=?telInfo.replace("__GetZoneResult_?=?",?"");
????????????b?=?b.replace("'",?"\"");
????????????b?=?b.replace("mts",?"\"mts\"");
????????????b?=?b.replace("province",?"\"province\"");
????????????b?=?b.replace("catName",?"\"catName\"");
????????????b?=?b.replace("telString",?"\"telString\"");
????????????b?=?b.replace("areaVid",?"\"areaVid\"");
????????????b?=?b.replace("ispVid",?"\"ispVid\"");
????????????b?=?b.replace("carrier",?"\"carrier\"");
????????????return?b;
????????}?catch?(Exception?e)?{
????????????e.printStackTrace();
????????????return?null;
????????}?finally?{
????????????try?{
????????????????if?(response?!=?null)?{
????????????????????response.close();
????????????????}
????????????}?catch?(IOException?e)?{
????????????????e.printStackTrace();
????????????}
????????????try?{
????????????????httpClient.close();
????????????}?catch?(IOException?e)?{
????????????????e.printStackTrace();
????????????}
????????}
????}
}
結(jié)果
這是文章最后的彩蛋
我聽說(shuō)轉(zhuǎn)發(fā)文章
會(huì)給你帶來(lái)好運(yùn)
186信息網(wǎng)原創(chuàng)文章,轉(zhuǎn)載請(qǐng)注明本文來(lái)自:www.xt88.cn