java使用淘宝API读写json实现手机归属地查询功能代码

时间:2021-05-31 03:27:38 

一般查询手机归属地内容应该很好用json格式保存,在网上找到了淘宝的归属地API,并下了处理json相关的jar包,做了这个手机归属地查询功能


package com.think.java;

import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.List;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;

public class TestMobileCity {   

    /**
     * 测试手机号码是来自哪个城市的,利用淘宝的API
     * @param mobileNumber 手机号码
     * @return
     * @throws MalformedURLException
     */
    public static String calcMobileCity(String mobileNumber) throws MalformedURLException{
        String jsonString = null;
        JSONArray array = null;
        JSONObject jsonObject = null;
        String urlString = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=" + mobileNumber;
        StringBuffer sb = new StringBuffer();
        BufferedReader buffer;
        URL url = new URL(urlString);
        try{
            InputStream in = url.openStream();

            // 解决乱码问题
            buffer = new BufferedReader(new InputStreamReader(in,"gb2312"));
            String line = null;
            while((line = buffer.readLine()) != null){
                sb.append(line);
            }
            in.close();
            buffer.close();
            // System.out.println(sb.toString());
            jsonString = sb.toString();
            // 替换掉“__GetZoneResult_ = ”,让它能转换为JSONArray对象
            jsonString = jsonString.replaceAll("^[__]\\w{14}+[_ = ]+", "[");
            // System.out.println(jsonString+"]");
            String jsonString2 = jsonString + "]";
            // 把STRING转化为json对象
            array = JSONArray.fromObject(jsonString2);

            // 获取JSONArray的JSONObject对象,便于读取array里的键值对
            jsonObject = array.getJSONObject(0);       

        }catch(Exception e){
            e.printStackTrace();
        }
        return jsonObject.getString("province");
    }

    /**
     * 计算多个号码的归属地
     * @param mobileNumbers 号码列表
     * @return
     * @throws MalformedURLException
     */
    public static JSONObject calcMobilesCities(List<String> mobileNumbers) throws MalformedURLException{
        JSONObject jsonNumberCity = new JSONObject();
        for(String mobileNumber : mobileNumbers){
            jsonNumberCity.put(mobileNumber, calcMobileCity(mobileNumber));            ;
        }       
        return jsonNumberCity;
    }

    public static void main(String[] args) throws Exception{
        String testMobileNumber = "1881758452";
        System.out.println(calcMobileCity(testMobileNumber));
        List<String> mobileList = new ArrayList<String>();
        for(int i = 1350345; i < 1350388; i++){
            mobileList.add(String.valueOf(i));
        }
        System.out.println(calcMobilesCities(mobileList).toString());
    }
}

标签:淘宝API,手机归属地查询,json,java
0
投稿

猜你喜欢

  • Android Studio做超好玩的拼图游戏 附送详细注释源码

    2023-08-05 12:19:16
  • springmvc与mybatis集成配置实例详解

    2021-06-16 22:10:27
  • spring boot配置读写分离的完整实现步骤

    2022-02-15 21:23:11
  • Java对象的内存布局详细介绍

    2021-07-28 05:11:38
  • 详解spring中的Aware接口功能

    2023-07-02 00:36:01
  • Java双向链表的操作

    2021-07-31 02:54:33
  • java基础之接口组成更新的实现

    2022-10-03 08:10:27
  • c# 递归访问文件夹(删掉歌词文件)

    2022-02-11 02:52:16
  • Android简单实现天气预报App

    2022-11-05 05:50:32
  • java图搜索算法之DFS与BFS详解

    2022-08-15 15:48:57
  • Android 5秒学会使用手势解锁功能

    2023-07-11 13:48:32
  • C# 使用com获取Windows摄像头列表

    2022-11-03 09:50:49
  • Android recyclerview实现拖拽排序和侧滑删除

    2021-10-04 00:33:16
  • Spring中SmartLifecycle和Lifecycle的作用和区别

    2023-11-18 22:55:50
  • java实现五子棋程序

    2022-01-29 10:40:38
  • java String 转成Double二维数组的方法

    2023-04-28 12:11:02
  • java之swing下拉菜单实现方法

    2023-07-12 04:55:30
  • android中NFC读写功能的实现方法

    2023-10-19 12:30:07
  • C#用委托BeginInvoke做异步线程

    2023-04-22 07:23:05
  • spring boot springMVC扩展配置实现解析

    2023-11-25 10:32:53
  • asp之家 软件编程 m.aspxhome.com