자바 서버 쪽 JSON 패 킷 가 져 오기 및 분석

최근 에 spring boot 프로젝트 를 하려 면 위 챗 api 에서 사용자 데 이 터 를 가 져 오고 분석 하여 자바 의 대상 으로 변환 해 야 하기 때문에 JSONanalysis 정적 도구 류 를 쓰기 로 결 정 했 습 니 다. 필요 할 때 이 방법 만 사용 하면 됩 니 다.
참고 자료: JSONobject, JSONARray, Map, String 간 전환
이 사이트 에는 JSON API 무료 인터페이스 가 많 습 니 다.
http://www.bejson.com/knownjson/webInterface/
 JSON 대상 테스트 데이터 원본
http://www.kuaidi100.com/query?type=yuantong&postid=11111111111
상기 두 개의 사이트 인터페이스 데 이 터 는 이번 학습 의 테스트 데이터 로 만 사용 된다.
1) pom 파일 에 json 의존 을 추가 하거나 해당 json 의 jar 패 키 지 를 다운로드 하여 classpath 경 로 를 불 러 옵 니 다.

    net.sf.json-lib
    json-lib
    2.4
    jdk15

 
2) JSONanalysis 정적 도구 클래스
package JSON;

import net.sf.json.JSONArray;
import net.sf.json.JSONObject;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.URL;
import java.net.URLConnection;
import java.util.Map;



public class JSONAnalysis {
    /**
     *   url  json   
     * @param url
     * @return
     */
    public static String loadJson(String url)  {
        StringBuilder json = new StringBuilder();
        try {

            URL urlObject = new URL(url);
            URLConnection uc  = urlObject.openConnection();
            BufferedReader in = new BufferedReader(new InputStreamReader(uc.getInputStream()));
            String inputLine = null;
            while((inputLine = in.readLine())!=null){
                json.append(inputLine);
            }
            in.close();
        }catch (Exception e) {
            e.printStackTrace();
        }
        return json.toString();
    }

    /**
     *   JSON      ,       java.util.Map
     * @param String
     * @return java.util.Map
     */
    public static Map getKeytoValueFromJsonObject(String jsonStr){
        System.out.println("---  JSON     ---");

        // json      JSONObject
        JSONObject jsonObject = JSONObject.fromObject(jsonStr);

        Map map = jsonObject;

        return map;
    }
    /**
     *   JSON        ,       java.util.Map
     * @param String
     * @return java.util.Map[]
     */
    public static Map[] getKeytoValueFromJsonArray(String jsonStr){
        System.out.println("---  JSON       ---");
        // json      JSONObject
        JSONArray jsonArray = JSONArray.fromObject(jsonStr);
        Map[] mapArray  = new Map[jsonArray.size()];
        for(int i=0 ; i < jsonArray.size(); i++) {
            //     JsonObject  
            JSONObject jsonObject = jsonArray.getJSONObject(i);
            mapArray[i] = jsonObject;
        }
        return mapArray;
    }


    public static void main(String[] args) {
        String jsonData = loadJson("http://www.kuaidi100.com/query?type=yuantong&postid=11111111111");
        System.out.println(jsonData);

        Map map = getKeytoValueFromJsonObject(jsonData);
        for (Map.Entry entry : map.entrySet()) {
            System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue());
        }

        //map.get("data")     JSONArray  
        String jsonArr = map.get("data").toString();
        System.out.println(jsonArr);

        Map[] mapArr = getKeytoValueFromJsonArray(jsonArr); int i = 1;
        for(Map mapObj : mapArr) {
            System.out.println("mapArr#" + i++ + "#" );
            for (Map.Entry entry : mapObj.entrySet()) {
                System.out.println("Key = " + entry.getKey() + ", Value = " + entry.getValue());
            }

            System.out.println();
        }

        System.out.println("It's OK!");
    }
}

 3) 컴 파일 하고 실행 합 니 다. 프로그램의 상황 은 다음 과 같 습 니 다.
"C:\Program Files\Java\jdk1.8.0_131\bin\java.exe" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2018.2.1\lib\idea_rt.jar=60594:C:\Program Files\JetBrains\IntelliJ IDEA 2018.2.1\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\Java\jdk1.8.0_131\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext
ashorn.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_131\jre\lib\rt.jar;D:\IdeaProjects\JavaStudy\target\classes;E:\maven\repository
et\sf\json-lib\json-lib\2.4\json-lib-2.4-jdk15.jar;E:\maven\repository\commons-beanutils\commons-beanutils\1.8.0\commons-beanutils-1.8.0.jar;E:\maven\repository\commons-collections\commons-collections\3.2.1\commons-collections-3.2.1.jar;E:\maven\repository\commons-lang\commons-lang\2.5\commons-lang-2.5.jar;E:\maven\repository\commons-logging\commons-logging\1.1.1\commons-logging-1.1.1.jar;E:\maven\repository
et\sf\ezmorph\ezmorph\1.0.6\ezmorph-1.0.6.jar" JSON.JSONAnalysis {"message":"ok","nu":"11111111111","ischeck":"0","condition":"00","com":"yuantong","status":"200","state":"5","data":[{"time":"2018-08-11 21:21:02","ftime":"2018-08-11 21:21:02","context":" 14 5 , , 18105715870","location":null},{"time":"2018-08-11 21:21:02","ftime":"2018-08-11 21:21:02","context":" 14 5 , 18105715870","location":null},{"time":"2018-08-09 09:25:34","ftime":"2018-08-09 09:25:34","context":" 3 A 8 , , 17345883730","location":null},{"time":"2018-08-09 09:24:34","ftime":"2018-08-09 09:24:34","context":" 3 A 8 , 17345883730","location":null},{"time":"2018-08-04 09:56:26","ftime":"2018-08-04 09:56:26","context":" , , 18973127225","location":null},{"time":"2018-08-04 09:55:26","ftime":"2018-08-04 09:55:26","context":" , 18973127225","location":null},{"time":"2018-08-01 16:18:30","ftime":"2018-08-01 16:18:30","context":" , , 15079736558","location":null},{"time":"2018-08-01 16:17:30","ftime":"2018-08-01 16:17:30","context":" , 15079736558","location":null},{"time":"2018-06-29 11:33:22","ftime":"2018-06-29 11:33:22","context":" 1 , , 18659973879","location":null},{"time":"2018-06-29 11:33:22","ftime":"2018-06-29 11:33:22","context":" 1 , 18659973879","location":null},{"time":"2018-06-26 09:18:53","ftime":"2018-06-26 09:18:53","context":" 2-28 , , 13855976229","location":null},{"time":"2018-06-26 09:18:53","ftime":"2018-06-26 09:18:53","context":" 2-28 , 13855976229","location":null},{"time":"2018-06-17 14:43:52","ftime":"2018-06-17 14:43:52","context":" , 13662115693","location":null},{"time":"2018-06-17 14:43:52","ftime":"2018-06-17 14:43:52","context":" , , 13662115693","location":null},{"time":"2018-06-10 12:21:24","ftime":"2018-06-10 12:21:24","context":" , , 13849372377","location":null},{"time":"2018-06-10 12:21:24","ftime":"2018-06-10 12:21:24","context":" , 13849372377","location":null},{"time":"2018-06-07 16:08:58","ftime":"2018-06-07 16:08:58","context":" 672 , 021-67879206","location":null},{"time":"2018-06-07 16:08:58","ftime":"2018-06-07 16:08:58","context":" 672 , , 021-67879206","location":null},{"time":"2018-05-31 20:07:02","ftime":"2018-05-31 20:07:02","context":" , 18106332770","location":null},{"time":"2018-05-31 20:07:02","ftime":"2018-05-31 20:07:02","context":" , , 18106332770","location":null},{"time":"2018-05-30 10:57:46","ftime":"2018-05-30 10:57:46","context":" 98 , 18221459909","location":null},{"time":"2018-05-30 10:57:46","ftime":"2018-05-30 10:57:46","context":" 98 , , 18221459909","location":null},{"time":"2018-05-29 19:53:25","ftime":"2018-05-29 19:53:25","context":" , 18577846400","location":null},{"time":"2018-05-25 09:44:25","ftime":"2018-05-25 09:44:25","context":" , , 15377667309","location":null},{"time":"2018-05-25 09:44:24","ftime":"2018-05-25 09:44:24","context":" , 15377667309","location":null},{"time":"2018-05-23 12:16:35","ftime":"2018-05-23 12:16:35","context":" , , 17723937369","location":null},{"time":"2018-05-23 12:16:32","ftime":"2018-05-23 12:16:32","context":" , 17723937369","location":null},{"time":"2018-05-09 11:07:09","ftime":"2018-05-09 11:07:09","context":" , 18870011859","location":null},{"time":"2018-05-09 11:07:09","ftime":"2018-05-09 11:07:09","context":" , , 18870011859","location":null},{"time":"2018-05-06 10:13:51","ftime":"2018-05-06 10:13:51","context":" 5 , , 15966106271","location":null},{"time":"2018-05-06 10:13:51","ftime":"2018-05-06 10:13:51","context":" 5 , 15966106271","location":null},{"time":"2018-04-25 13:25:07","ftime":"2018-04-25 13:25:07","context":" 14 1-7 , , 17318411160","location":null},{"time":"2018-04-25 13:25:07","ftime":"2018-04-25 13:25:07","context":" 14 1-7 , 17318411160","location":null},{"time":"2018-04-23 09:14:53","ftime":"2018-04-23 09:14:53","context":" 17 , 18168989760","location":null},{"time":"2018-04-23 09:14:53","ftime":"2018-04-23 09:14:53","context":" 17 , , 18168989760","location":null},{"time":"2018-04-08 14:55:39","ftime":"2018-04-08 14:55:39","context":" 1 33 , , 13123712883","location":null},{"time":"2018-04-08 14:55:39","ftime":"2018-04-08 14:55:39","context":" 1 33 , 13123712883","location":null},{"time":"2018-04-07 14:58:29","ftime":"2018-04-07 14:58:29","context":" , , 18192082506","location":null},{"time":"2018-04-07 14:58:29","ftime":"2018-04-07 14:58:29","context":" , 18192082506","location":null},{"time":"2018-04-05 09:11:53","ftime":"2018-04-05 09:11:53","context":" 17 , , 18918021456","location":null},{"time":"2018-04-05 09:11:53","ftime":"2018-04-05 09:11:53","context":" 17 , 18918021456","location":null},{"time":"2018-03-13 11:30:29","ftime":"2018-03-13 11:30:29","context":" 8 106 , 13755027160","location":null},{"time":"2018-03-13 11:30:29","ftime":"2018-03-13 11:30:29","context":" 8 106 , , 13755027160","location":null},{"time":"2018-03-10 20:16:41","ftime":"2018-03-10 20:16:41","context":" , , 17610012989","location":null},{"time":"2018-03-10 20:16:41","ftime":"2018-03-10 20:16:41","context":" , 17610012989","location":null},{"time":"2018-03-09 12:25:35","ftime":"2018-03-09 12:25:35","context":" 800 , , 18105389267","location":null},{"time":"2018-03-09 12:25:35","ftime":"2018-03-09 12:25:35","context":" 800 , 18105389267","location":null},{"time":"2018-03-01 08:17:17","ftime":"2018-03-01 08:17:17","context":" 19 21 , , 15737044817","location":null},{"time":"2018-03-01 08:17:17","ftime":"2018-03-01 08:17:17","context":" 19 21 , 15737044817","location":null},{"time":"2018-01-26 21:59:03","ftime":"2018-01-26 21:59:03","context":" A 16 , , 13664776468","location":null},{"time":"2018-01-26 21:59:03","ftime":"2018-01-26 21:59:03","context":" A 16 , 13664776468","location":null},{"time":"2018-01-24 11:37:47","ftime":"2018-01-24 11:37:47","context":" 2 , , 13956927234","location":null},{"time":"2018-01-24 11:37:27","ftime":"2018-01-24 11:37:27","context":" 2 , 13956927234","location":null},{"time":"2018-01-13 16:17:08","ftime":"2018-01-13 16:17:08","context":" 418 , 15801900095","location":null},{"time":"2018-01-13 16:17:08","ftime":"2018-01-13 16:17:08","context":" 418 , , 15801900095","location":null},{"time":"2018-01-10 18:11:23","ftime":"2018-01-10 18:11:23","context":" , , 15850947167","location":null},{"time":"2018-01-10 18:11:23","ftime":"2018-01-10 18:11:23","context":" , 15850947167","location":null},{"time":"2018-01-07 19:42:41","ftime":"2018-01-07 19:42:41","context":" 【 】 , 18946131929","location":null},{"time":"2017-12-18 17:17:58","ftime":"2017-12-18 17:17:58","context":" 9 2 , , 15340979298","location":null},{"time":"2017-12-18 17:17:58","ftime":"2017-12-18 17:17:58","context":" 9 2 , 15340979298","location":null},{"time":"2017-12-18 16:37:45","ftime":"2017-12-18 16:37:45","context":" 40 , 15208326965","location":null},{"time":"2017-12-18 16:37:45","ftime":"2017-12-18 16:37:45","context":" 40 , , 15208326965","location":null},{"time":"2017-12-06 14:43:57","ftime":"2017-12-06 14:43:57","context":" - , 021-50831622","location":null},{"time":"2017-12-06 14:43:57","ftime":"2017-12-06 14:43:57","context":" - , , 021-50831622","location":null},{"time":"2017-11-30 13:49:45","ftime":"2017-11-30 13:49:45","context":" 15 , 023-63417526","location":null},{"time":"2017-11-30 13:49:45","ftime":"2017-11-30 13:49:45","context":" 15 , , 023-63417526","location":null},{"time":"2017-11-26 12:45:35","ftime":"2017-11-26 12:45:35","context":" 11 , 15068885505","location":null},{"time":"2017-11-26 09:14:57","ftime":"2017-11-26 09:14:57","context":" 9 , 13546317781","location":null},{"time":"2017-11-26 09:14:57","ftime":"2017-11-26 09:14:57","context":" 9 , , 13546317781","location":null},{"time":"2017-11-18 15:28:25","ftime":"2017-11-18 15:28:25","context":" , , 18353222003","location":null},{"time":"2017-11-18 15:28:24","ftime":"2017-11-18 15:28:24","context":" , 18353222003","location":null},{"time":"2017-11-12 14:37:23","ftime":"2017-11-12 14:37:23","context":" 6 1 101 , 13855871959","location":null},{"time":"2017-11-12 14:37:23","ftime":"2017-11-12 14:37:23","context":" 6 1 101 , , 13855871959","location":null},{"time":"2017-10-26 12:02:51","ftime":"2017-10-26 12:02:51","context":" 20 , , 18560465196","location":null},{"time":"2017-10-26 12:02:51","ftime":"2017-10-26 12:02:51","context":" 20 , 18560465196","location":null},{"time":"2017-10-26 11:23:19","ftime":"2017-10-26 11:23:19","context":" 01 , , 0351-2397126","location":null},{"time":"2017-10-26 11:23:19","ftime":"2017-10-26 11:23:19","context":" 01 , 0351-2397126","location":null},{"time":"2017-10-23 16:30:34","ftime":"2017-10-23 16:30:34","context":" , , 18158928623","location":null},{"time":"2017-10-23 16:30:34","ftime":"2017-10-23 16:30:34","context":" , 18158928623","location":null},{"time":"2017-10-12 22:11:23","ftime":"2017-10-12 22:11:23","context":" B4 3 , 18945009357","location":null},{"time":"2017-10-12 22:11:23","ftime":"2017-10-12 22:11:23","context":" B4 3 , , 18945009357","location":null},{"time":"2017-09-26 11:24:53","ftime":"2017-09-26 11:24:53","context":" , , 18014730012","location":null},{"time":"2017-09-26 11:24:52","ftime":"2017-09-26 11:24:52","context":" , 18014730012","location":null},{"time":"2017-09-01 20:12:51","ftime":"2017-09-01 20:12:51","context":" , , 18552351543","location":null},{"time":"2017-09-01 20:12:51","ftime":"2017-09-01 20:12:51","context":" , 18552351543","location":null},{"time":"2017-08-30 09:02:31","ftime":"2017-08-30 09:02:31","context":" 【 】 , 13337713618","location":null},{"time":"2017-08-23 09:12:48","ftime":"2017-08-23 09:12:48","context":" , 17743125815","location":null},{"time":"2017-08-23 09:12:48","ftime":"2017-08-23 09:12:48","context":" , , 17743125815","location":null},{"time":"2017-07-24 21:17:01","ftime":"2017-07-24 21:17:01","context":" , 63762999","location":null},{"time":"2017-07-19 11:51:15","ftime":"2017-07-19 11:51:15","context":" , 13677824226","location":null},{"time":"2017-06-22 13:26:09","ftime":"2017-06-22 13:26:09","context":" 100 , , 13014796333","location":null},{"time":"2017-06-22 13:26:09","ftime":"2017-06-22 13:26:09","context":" 100 , 13014796333","location":null},{"time":"2017-06-07 11:21:03","ftime":"2017-06-07 11:21:03","context":" , 13370110797","location":null},{"time":"2017-06-07 11:21:03","ftime":"2017-06-07 11:21:03","context":" , , 13370110797","location":null}]} --- JSON --- Key = message, Value = ok Key = nu, Value = 11111111111 Key = ischeck, Value = 0 Key = condition, Value = 00 Key = com, Value = yuantong Key = status, Value = 200 Key = state, Value = 5 Key = data, Value = [{"time":"2018-08-11 21:21:02","ftime":"2018-08-11 21:21:02","context":" 14 5 , , 18105715870","location":null},{"time":"2018-08-11 21:21:02","ftime":"2018-08-11 21:21:02","context":" 14 5 , 18105715870","location":null},{"time":"2018-08-09 09:25:34","ftime":"2018-08-09 09:25:34","context":" 3 A 8 , , 17345883730","location":null},{"time":"2018-08-09 09:24:34","ftime":"2018-08-09 09:24:34","context":" 3 A 8 , 17345883730","location":null},{"time":"2018-08-04 09:56:26","ftime":"2018-08-04 09:56:26","context":" , , 18973127225","location":null},{"time":"2018-08-04 09:55:26","ftime":"2018-08-04 09:55:26","context":" , 18973127225","location":null},{"time":"2018-08-01 16:18:30","ftime":"2018-08-01 16:18:30","context":" , , 15079736558","location":null},{"time":"2018-08-01 16:17:30","ftime":"2018-08-01 16:17:30","context":" , 15079736558","location":null},{"time":"2018-06-29 11:33:22","ftime":"2018-06-29 11:33:22","context":" 1 , , 18659973879","location":null},{"time":"2018-06-29 11:33:22","ftime":"2018-06-29 11:33:22","context":" 1 , 18659973879","location":null},{"time":"2018-06-26 09:18:53","ftime":"2018-06-26 09:18:53","context":" 2-28 , , 13855976229","location":null},{"time":"2018-06-26 09:18:53","ftime":"2018-06-26 09:18:53","context":" 2-28 , 13855976229","location":null},{"time":"2018-06-17 14:43:52","ftime":"2018-06-17 14:43:52","context":" , 13662115693","location":null},{"time":"2018-06-17 14:43:52","ftime":"2018-06-17 14:43:52","context":" , , 13662115693","location":null},{"time":"2018-06-10 12:21:24","ftime":"2018-06-10 12:21:24","context":" , , 13849372377","location":null},{"time":"2018-06-10 12:21:24","ftime":"2018-06-10 12:21:24","context":" , 13849372377","location":null},{"time":"2018-06-07 16:08:58","ftime":"2018-06-07 16:08:58","context":" 672 , 021-67879206","location":null},{"time":"2018-06-07 16:08:58","ftime":"2018-06-07 16:08:58","context":" 672 , , 021-67879206","location":null},{"time":"2018-05-31 20:07:02","ftime":"2018-05-31 20:07:02","context":" , 18106332770","location":null},{"time":"2018-05-31 20:07:02","ftime":"2018-05-31 20:07:02","context":" , , 18106332770","location":null},{"time":"2018-05-30 10:57:46","ftime":"2018-05-30 10:57:46","context":" 98 , 18221459909","location":null},{"time":"2018-05-30 10:57:46","ftime":"2018-05-30 10:57:46","context":" 98 , , 18221459909","location":null},{"time":"2018-05-29 19:53:25","ftime":"2018-05-29 19:53:25","context":" , 18577846400","location":null},{"time":"2018-05-25 09:44:25","ftime":"2018-05-25 09:44:25","context":" , , 15377667309","location":null},{"time":"2018-05-25 09:44:24","ftime":"2018-05-25 09:44:24","context":" , 15377667309","location":null},{"time":"2018-05-23 12:16:35","ftime":"2018-05-23 12:16:35","context":" , , 17723937369","location":null},{"time":"2018-05-23 12:16:32","ftime":"2018-05-23 12:16:32","context":" , 17723937369","location":null},{"time":"2018-05-09 11:07:09","ftime":"2018-05-09 11:07:09","context":" , 18870011859","location":null},{"time":"2018-05-09 11:07:09","ftime":"2018-05-09 11:07:09","context":" , , 18870011859","location":null},{"time":"2018-05-06 10:13:51","ftime":"2018-05-06 10:13:51","context":" 5 , , 15966106271","location":null},{"time":"2018-05-06 10:13:51","ftime":"2018-05-06 10:13:51","context":" 5 , 15966106271","location":null},{"time":"2018-04-25 13:25:07","ftime":"2018-04-25 13:25:07","context":" 14 1-7 , , 17318411160","location":null},{"time":"2018-04-25 13:25:07","ftime":"2018-04-25 13:25:07","context":" 14 1-7 , 17318411160","location":null},{"time":"2018-04-23 09:14:53","ftime":"2018-04-23 09:14:53","context":" 17 , 18168989760","location":null},{"time":"2018-04-23 09:14:53","ftime":"2018-04-23 09:14:53","context":" 17 , , 18168989760","location":null},{"time":"2018-04-08 14:55:39","ftime":"2018-04-08 14:55:39","context":" 1 33 , , 13123712883","location":null},{"time":"2018-04-08 14:55:39","ftime":"2018-04-08 14:55:39","context":" 1 33 , 13123712883","location":null},{"time":"2018-04-07 14:58:29","ftime":"2018-04-07 14:58:29","context":" , , 18192082506","location":null},{"time":"2018-04-07 14:58:29","ftime":"2018-04-07 14:58:29","context":" , 18192082506","location":null},{"time":"2018-04-05 09:11:53","ftime":"2018-04-05 09:11:53","context":" 17 , , 18918021456","location":null},{"time":"2018-04-05 09:11:53","ftime":"2018-04-05 09:11:53","context":" 17 , 18918021456","location":null},{"time":"2018-03-13 11:30:29","ftime":"2018-03-13 11:30:29","context":" 8 106 , 13755027160","location":null},{"time":"2018-03-13 11:30:29","ftime":"2018-03-13 11:30:29","context":" 8 106 , , 13755027160","location":null},{"time":"2018-03-10 20:16:41","ftime":"2018-03-10 20:16:41","context":" , , 17610012989","location":null},{"time":"2018-03-10 20:16:41","ftime":"2018-03-10 20:16:41","context":" , 17610012989","location":null},{"time":"2018-03-09 12:25:35","ftime":"2018-03-09 12:25:35","context":" 800 , , 18105389267","location":null},{"time":"2018-03-09 12:25:35","ftime":"2018-03-09 12:25:35","context":" 800 , 18105389267","location":null},{"time":"2018-03-01 08:17:17","ftime":"2018-03-01 08:17:17","context":" 19 21 , , 15737044817","location":null},{"time":"2018-03-01 08:17:17","ftime":"2018-03-01 08:17:17","context":" 19 21 , 15737044817","location":null},{"time":"2018-01-26 21:59:03","ftime":"2018-01-26 21:59:03","context":" A 16 , , 13664776468","location":null},{"time":"2018-01-26 21:59:03","ftime":"2018-01-26 21:59:03","context":" A 16 , 13664776468","location":null},{"time":"2018-01-24 11:37:47","ftime":"2018-01-24 11:37:47","context":" 2 , , 13956927234","location":null},{"time":"2018-01-24 11:37:27","ftime":"2018-01-24 11:37:27","context":" 2 , 13956927234","location":null},{"time":"2018-01-13 16:17:08","ftime":"2018-01-13 16:17:08","context":" 418 , 15801900095","location":null},{"time":"2018-01-13 16:17:08","ftime":"2018-01-13 16:17:08","context":" 418 , , 15801900095","location":null},{"time":"2018-01-10 18:11:23","ftime":"2018-01-10 18:11:23","context":" , , 15850947167","location":null},{"time":"2018-01-10 18:11:23","ftime":"2018-01-10 18:11:23","context":" , 15850947167","location":null},{"time":"2018-01-07 19:42:41","ftime":"2018-01-07 19:42:41","context":" 【 】 , 18946131929","location":null},{"time":"2017-12-18 17:17:58","ftime":"2017-12-18 17:17:58","context":" 9 2 , , 15340979298","location":null},{"time":"2017-12-18 17:17:58","ftime":"2017-12-18 17:17:58","context":" 9 2 , 15340979298","location":null},{"time":"2017-12-18 16:37:45","ftime":"2017-12-18 16:37:45","context":" 40 , 15208326965","location":null},{"time":"2017-12-18 16:37:45","ftime":"2017-12-18 16:37:45","context":" 40 , , 15208326965","location":null},{"time":"2017-12-06 14:43:57","ftime":"2017-12-06 14:43:57","context":" - , 021-50831622","location":null},{"time":"2017-12-06 14:43:57","ftime":"2017-12-06 14:43:57","context":" - , , 021-50831622","location":null},{"time":"2017-11-30 13:49:45","ftime":"2017-11-30 13:49:45","context":" 15 , 023-63417526","location":null},{"time":"2017-11-30 13:49:45","ftime":"2017-11-30 13:49:45","context":" 15 , , 023-63417526","location":null},{"time":"2017-11-26 12:45:35","ftime":"2017-11-26 12:45:35","context":" 11 , 15068885505","location":null},{"time":"2017-11-26 09:14:57","ftime":"2017-11-26 09:14:57","context":" 9 , 13546317781","location":null},{"time":"2017-11-26 09:14:57","ftime":"2017-11-26 09:14:57","context":" 9 , , 13546317781","location":null},{"time":"2017-11-18 15:28:25","ftime":"2017-11-18 15:28:25","context":" , , 18353222003","location":null},{"time":"2017-11-18 15:28:24","ftime":"2017-11-18 15:28:24","context":" , 18353222003","location":null},{"time":"2017-11-12 14:37:23","ftime":"2017-11-12 14:37:23","context":" 6 1 101 , 13855871959","location":null},{"time":"2017-11-12 14:37:23","ftime":"2017-11-12 14:37:23","context":" 6 1 101 , , 13855871959","location":null},{"time":"2017-10-26 12:02:51","ftime":"2017-10-26 12:02:51","context":" 20 , , 18560465196","location":null},{"time":"2017-10-26 12:02:51","ftime":"2017-10-26 12:02:51","context":" 20 , 18560465196","location":null},{"time":"2017-10-26 11:23:19","ftime":"2017-10-26 11:23:19","context":" 01 , , 0351-2397126","location":null},{"time":"2017-10-26 11:23:19","ftime":"2017-10-26 11:23:19","context":" 01 , 0351-2397126","location":null},{"time":"2017-10-23 16:30:34","ftime":"2017-10-23 16:30:34","context":" , , 18158928623","location":null},{"time":"2017-10-23 16:30:34","ftime":"2017-10-23 16:30:34","context":" , 18158928623","location":null},{"time":"2017-10-12 22:11:23","ftime":"2017-10-12 22:11:23","context":" B4 3 , 18945009357","location":null},{"time":"2017-10-12 22:11:23","ftime":"2017-10-12 22:11:23","context":" B4 3 , , 18945009357","location":null},{"time":"2017-09-26 11:24:53","ftime":"2017-09-26 11:24:53","context":" , , 18014730012","location":null},{"time":"2017-09-26 11:24:52","ftime":"2017-09-26 11:24:52","context":" , 18014730012","location":null},{"time":"2017-09-01 20:12:51","ftime":"2017-09-01 20:12:51","context":" , , 18552351543","location":null},{"time":"2017-09-01 20:12:51","ftime":"2017-09-01 20:12:51","context":" , 18552351543","location":null},{"time":"2017-08-30 09:02:31","ftime":"2017-08-30 09:02:31","context":" 【 】 , 13337713618","location":null},{"time":"2017-08-23 09:12:48","ftime":"2017-08-23 09:12:48","context":" , 17743125815","location":null},{"time":"2017-08-23 09:12:48","ftime":"2017-08-23 09:12:48","context":" , , 17743125815","location":null},{"time":"2017-07-24 21:17:01","ftime":"2017-07-24 21:17:01","context":" , 63762999","location":null},{"time":"2017-07-19 11:51:15","ftime":"2017-07-19 11:51:15","context":" , 13677824226","location":null},{"time":"2017-06-22 13:26:09","ftime":"2017-06-22 13:26:09","context":" 100 , , 13014796333","location":null},{"time":"2017-06-22 13:26:09","ftime":"2017-06-22 13:26:09","context":" 100 , 13014796333","location":null},{"time":"2017-06-07 11:21:03","ftime":"2017-06-07 11:21:03","context":" , 13370110797","location":null},{"time":"2017-06-07 11:21:03","ftime":"2017-06-07 11:21:03","context":" , , 13370110797","location":null}] [{"time":"2018-08-11 21:21:02","ftime":"2018-08-11 21:21:02","context":" 14 5 , , 18105715870","location":null},{"time":"2018-08-11 21:21:02","ftime":"2018-08-11 21:21:02","context":" 14 5 , 18105715870","location":null},{"time":"2018-08-09 09:25:34","ftime":"2018-08-09 09:25:34","context":" 3 A 8 , , 17345883730","location":null},{"time":"2018-08-09 09:24:34","ftime":"2018-08-09 09:24:34","context":" 3 A 8 , 17345883730","location":null},{"time":"2018-08-04 09:56:26","ftime":"2018-08-04 09:56:26","context":" , , 18973127225","location":null},{"time":"2018-08-04 09:55:26","ftime":"2018-08-04 09:55:26","context":" , 18973127225","location":null},{"time":"2018-08-01 16:18:30","ftime":"2018-08-01 16:18:30","context":" , , 15079736558","location":null},{"time":"2018-08-01 16:17:30","ftime":"2018-08-01 16:17:30","context":" , 15079736558","location":null},{"time":"2018-06-29 11:33:22","ftime":"2018-06-29 11:33:22","context":" 1 , , 18659973879","location":null},{"time":"2018-06-29 11:33:22","ftime":"2018-06-29 11:33:22","context":" 1 , 18659973879","location":null},{"time":"2018-06-26 09:18:53","ftime":"2018-06-26 09:18:53","context":" 2-28 , , 13855976229","location":null},{"time":"2018-06-26 09:18:53","ftime":"2018-06-26 09:18:53","context":" 2-28 , 13855976229","location":null},{"time":"2018-06-17 14:43:52","ftime":"2018-06-17 14:43:52","context":" , 13662115693","location":null},{"time":"2018-06-17 14:43:52","ftime":"2018-06-17 14:43:52","context":" , , 13662115693","location":null},{"time":"2018-06-10 12:21:24","ftime":"2018-06-10 12:21:24","context":" , , 13849372377","location":null},{"time":"2018-06-10 12:21:24","ftime":"2018-06-10 12:21:24","context":" , 13849372377","location":null},{"time":"2018-06-07 16:08:58","ftime":"2018-06-07 16:08:58","context":" 672 , 021-67879206","location":null},{"time":"2018-06-07 16:08:58","ftime":"2018-06-07 16:08:58","context":" 672 , , 021-67879206","location":null},{"time":"2018-05-31 20:07:02","ftime":"2018-05-31 20:07:02","context":" , 18106332770","location":null},{"time":"2018-05-31 20:07:02","ftime":"2018-05-31 20:07:02","context":" , , 18106332770","location":null},{"time":"2018-05-30 10:57:46","ftime":"2018-05-30 10:57:46","context":" 98 , 18221459909","location":null},{"time":"2018-05-30 10:57:46","ftime":"2018-05-30 10:57:46","context":" 98 , , 18221459909","location":null},{"time":"2018-05-29 19:53:25","ftime":"2018-05-29 19:53:25","context":" , 18577846400","location":null},{"time":"2018-05-25 09:44:25","ftime":"2018-05-25 09:44:25","context":" , , 15377667309","location":null},{"time":"2018-05-25 09:44:24","ftime":"2018-05-25 09:44:24","context":" , 15377667309","location":null},{"time":"2018-05-23 12:16:35","ftime":"2018-05-23 12:16:35","context":" , , 17723937369","location":null},{"time":"2018-05-23 12:16:32","ftime":"2018-05-23 12:16:32","context":" , 17723937369","location":null},{"time":"2018-05-09 11:07:09","ftime":"2018-05-09 11:07:09","context":" , 18870011859","location":null},{"time":"2018-05-09 11:07:09","ftime":"2018-05-09 11:07:09","context":" , , 18870011859","location":null},{"time":"2018-05-06 10:13:51","ftime":"2018-05-06 10:13:51","context":" 5 , , 15966106271","location":null},{"time":"2018-05-06 10:13:51","ftime":"2018-05-06 10:13:51","context":" 5 , 15966106271","location":null},{"time":"2018-04-25 13:25:07","ftime":"2018-04-25 13:25:07","context":" 14 1-7 , , 17318411160","location":null},{"time":"2018-04-25 13:25:07","ftime":"2018-04-25 13:25:07","context":" 14 1-7 , 17318411160","location":null},{"time":"2018-04-23 09:14:53","ftime":"2018-04-23 09:14:53","context":" 17 , 18168989760","location":null},{"time":"2018-04-23 09:14:53","ftime":"2018-04-23 09:14:53","context":" 17 , , 18168989760","location":null},{"time":"2018-04-08 14:55:39","ftime":"2018-04-08 14:55:39","context":" 1 33 , , 13123712883","location":null},{"time":"2018-04-08 14:55:39","ftime":"2018-04-08 14:55:39","context":" 1 33 , 13123712883","location":null},{"time":"2018-04-07 14:58:29","ftime":"2018-04-07 14:58:29","context":" , , 18192082506","location":null},{"time":"2018-04-07 14:58:29","ftime":"2018-04-07 14:58:29","context":" , 18192082506","location":null},{"time":"2018-04-05 09:11:53","ftime":"2018-04-05 09:11:53","context":" 17 , , 18918021456","location":null},{"time":"2018-04-05 09:11:53","ftime":"2018-04-05 09:11:53","context":" 17 , 18918021456","location":null},{"time":"2018-03-13 11:30:29","ftime":"2018-03-13 11:30:29","context":" 8 106 , 13755027160","location":null},{"time":"2018-03-13 11:30:29","ftime":"2018-03-13 11:30:29","context":" 8 106 , , 13755027160","location":null},{"time":"2018-03-10 20:16:41","ftime":"2018-03-10 20:16:41","context":" , , 17610012989","location":null},{"time":"2018-03-10 20:16:41","ftime":"2018-03-10 20:16:41","context":" , 17610012989","location":null},{"time":"2018-03-09 12:25:35","ftime":"2018-03-09 12:25:35","context":" 800 , , 18105389267","location":null},{"time":"2018-03-09 12:25:35","ftime":"2018-03-09 12:25:35","context":" 800 , 18105389267","location":null},{"time":"2018-03-01 08:17:17","ftime":"2018-03-01 08:17:17","context":" 19 21 , , 15737044817","location":null},{"time":"2018-03-01 08:17:17","ftime":"2018-03-01 08:17:17","context":" 19 21 , 15737044817","location":null},{"time":"2018-01-26 21:59:03","ftime":"2018-01-26 21:59:03","context":" A 16 , , 13664776468","location":null},{"time":"2018-01-26 21:59:03","ftime":"2018-01-26 21:59:03","context":" A 16 , 13664776468","location":null},{"time":"2018-01-24 11:37:47","ftime":"2018-01-24 11:37:47","context":" 2 , , 13956927234","location":null},{"time":"2018-01-24 11:37:27","ftime":"2018-01-24 11:37:27","context":" 2 , 13956927234","location":null},{"time":"2018-01-13 16:17:08","ftime":"2018-01-13 16:17:08","context":" 418 , 15801900095","location":null},{"time":"2018-01-13 16:17:08","ftime":"2018-01-13 16:17:08","context":" 418 , , 15801900095","location":null},{"time":"2018-01-10 18:11:23","ftime":"2018-01-10 18:11:23","context":" , , 15850947167","location":null},{"time":"2018-01-10 18:11:23","ftime":"2018-01-10 18:11:23","context":" , 15850947167","location":null},{"time":"2018-01-07 19:42:41","ftime":"2018-01-07 19:42:41","context":" 【 】 , 18946131929","location":null},{"time":"2017-12-18 17:17:58","ftime":"2017-12-18 17:17:58","context":" 9 2 , , 15340979298","location":null},{"time":"2017-12-18 17:17:58","ftime":"2017-12-18 17:17:58","context":" 9 2 , 15340979298","location":null},{"time":"2017-12-18 16:37:45","ftime":"2017-12-18 16:37:45","context":" 40 , 15208326965","location":null},{"time":"2017-12-18 16:37:45","ftime":"2017-12-18 16:37:45","context":" 40 , , 15208326965","location":null},{"time":"2017-12-06 14:43:57","ftime":"2017-12-06 14:43:57","context":" - , 021-50831622","location":null},{"time":"2017-12-06 14:43:57","ftime":"2017-12-06 14:43:57","context":" - , , 021-50831622","location":null},{"time":"2017-11-30 13:49:45","ftime":"2017-11-30 13:49:45","context":" 15 , 023-63417526","location":null},{"time":"2017-11-30 13:49:45","ftime":"2017-11-30 13:49:45","context":" 15 , , 023-63417526","location":null},{"time":"2017-11-26 12:45:35","ftime":"2017-11-26 12:45:35","context":" 11 , 15068885505","location":null},{"time":"2017-11-26 09:14:57","ftime":"2017-11-26 09:14:57","context":" 9 , 13546317781","location":null},{"time":"2017-11-26 09:14:57","ftime":"2017-11-26 09:14:57","context":" 9 , , 13546317781","location":null},{"time":"2017-11-18 15:28:25","ftime":"2017-11-18 15:28:25","context":" , , 18353222003","location":null},{"time":"2017-11-18 15:28:24","ftime":"2017-11-18 15:28:24","context":" , 18353222003","location":null},{"time":"2017-11-12 14:37:23","ftime":"2017-11-12 14:37:23","context":" 6 1 101 , 13855871959","location":null},{"time":"2017-11-12 14:37:23","ftime":"2017-11-12 14:37:23","context":" 6 1 101 , , 13855871959","location":null},{"time":"2017-10-26 12:02:51","ftime":"2017-10-26 12:02:51","context":" 20 , , 18560465196","location":null},{"time":"2017-10-26 12:02:51","ftime":"2017-10-26 12:02:51","context":" 20 , 18560465196","location":null},{"time":"2017-10-26 11:23:19","ftime":"2017-10-26 11:23:19","context":" 01 , , 0351-2397126","location":null},{"time":"2017-10-26 11:23:19","ftime":"2017-10-26 11:23:19","context":" 01 , 0351-2397126","location":null},{"time":"2017-10-23 16:30:34","ftime":"2017-10-23 16:30:34","context":" , , 18158928623","location":null},{"time":"2017-10-23 16:30:34","ftime":"2017-10-23 16:30:34","context":" , 18158928623","location":null},{"time":"2017-10-12 22:11:23","ftime":"2017-10-12 22:11:23","context":" B4 3 , 18945009357","location":null},{"time":"2017-10-12 22:11:23","ftime":"2017-10-12 22:11:23","context":" B4 3 , , 18945009357","location":null},{"time":"2017-09-26 11:24:53","ftime":"2017-09-26 11:24:53","context":" , , 18014730012","location":null},{"time":"2017-09-26 11:24:52","ftime":"2017-09-26 11:24:52","context":" , 18014730012","location":null},{"time":"2017-09-01 20:12:51","ftime":"2017-09-01 20:12:51","context":" , , 18552351543","location":null},{"time":"2017-09-01 20:12:51","ftime":"2017-09-01 20:12:51","context":" , 18552351543","location":null},{"time":"2017-08-30 09:02:31","ftime":"2017-08-30 09:02:31","context":" 【 】 , 13337713618","location":null},{"time":"2017-08-23 09:12:48","ftime":"2017-08-23 09:12:48","context":" , 17743125815","location":null},{"time":"2017-08-23 09:12:48","ftime":"2017-08-23 09:12:48","context":" , , 17743125815","location":null},{"time":"2017-07-24 21:17:01","ftime":"2017-07-24 21:17:01","context":" , 63762999","location":null},{"time":"2017-07-19 11:51:15","ftime":"2017-07-19 11:51:15","context":" , 13677824226","location":null},{"time":"2017-06-22 13:26:09","ftime":"2017-06-22 13:26:09","context":" 100 , , 13014796333","location":null},{"time":"2017-06-22 13:26:09","ftime":"2017-06-22 13:26:09","context":" 100 , 13014796333","location":null},{"time":"2017-06-07 11:21:03","ftime":"2017-06-07 11:21:03","context":" , 13370110797","location":null},{"time":"2017-06-07 11:21:03","ftime":"2017-06-07 11:21:03","context":" , , 13370110797","location":null}] --- JSON --- mapArr#1# Key = time, Value = 2018-08-11 21:21:02 Key = ftime, Value = 2018-08-11 21:21:02 Key = context, Value = 14 5 , , 18105715870 Key = location, Value = null mapArr#2# Key = time, Value = 2018-08-11 21:21:02 Key = ftime, Value = 2018-08-11 21:21:02 Key = context, Value = 14 5 , 18105715870 Key = location, Value = null mapArr#3# Key = time, Value = 2018-08-09 09:25:34 Key = ftime, Value = 2018-08-09 09:25:34 Key = context, Value = 3 A 8 , , 17345883730 Key = location, Value = null mapArr#4# Key = time, Value = 2018-08-09 09:24:34 Key = ftime, Value = 2018-08-09 09:24:34 Key = context, Value = 3 A 8 , 17345883730 Key = location, Value = null mapArr#5# Key = time, Value = 2018-08-04 09:56:26 Key = ftime, Value = 2018-08-04 09:56:26 Key = context, Value = , , 18973127225 Key = location, Value = null mapArr#6# Key = time, Value = 2018-08-04 09:55:26 Key = ftime, Value = 2018-08-04 09:55:26 Key = context, Value = , 18973127225 Key = location, Value = null mapArr#7# Key = time, Value = 2018-08-01 16:18:30 Key = ftime, Value = 2018-08-01 16:18:30 Key = context, Value = , , 15079736558 Key = location, Value = null mapArr#8# Key = time, Value = 2018-08-01 16:17:30 Key = ftime, Value = 2018-08-01 16:17:30 Key = context, Value = , 15079736558 Key = location, Value = null mapArr#9# Key = time, Value = 2018-06-29 11:33:22 Key = ftime, Value = 2018-06-29 11:33:22 Key = context, Value = 1 , , 18659973879 Key = location, Value = null mapArr#10# Key = time, Value = 2018-06-29 11:33:22 Key = ftime, Value = 2018-06-29 11:33:22 Key = context, Value = 1 , 18659973879 Key = location, Value = null mapArr#11# Key = time, Value = 2018-06-26 09:18:53 Key = ftime, Value = 2018-06-26 09:18:53 Key = context, Value = 2-28 , , 13855976229 Key = location, Value = null mapArr#12# Key = time, Value = 2018-06-26 09:18:53 Key = ftime, Value = 2018-06-26 09:18:53 Key = context, Value = 2-28 , 13855976229 Key = location, Value = null mapArr#13# Key = time, Value = 2018-06-17 14:43:52 Key = ftime, Value = 2018-06-17 14:43:52 Key = context, Value = , 13662115693 Key = location, Value = null mapArr#14# Key = time, Value = 2018-06-17 14:43:52 Key = ftime, Value = 2018-06-17 14:43:52 Key = context, Value = , , 13662115693 Key = location, Value = null mapArr#15# Key = time, Value = 2018-06-10 12:21:24 Key = ftime, Value = 2018-06-10 12:21:24 Key = context, Value = , , 13849372377 Key = location, Value = null mapArr#16# Key = time, Value = 2018-06-10 12:21:24 Key = ftime, Value = 2018-06-10 12:21:24 Key = context, Value = , 13849372377 Key = location, Value = null mapArr#17# Key = time, Value = 2018-06-07 16:08:58 Key = ftime, Value = 2018-06-07 16:08:58 Key = context, Value = 672 , 021-67879206 Key = location, Value = null mapArr#18# Key = time, Value = 2018-06-07 16:08:58 Key = ftime, Value = 2018-06-07 16:08:58 Key = context, Value = 672 , , 021-67879206 Key = location, Value = null mapArr#19# Key = time, Value = 2018-05-31 20:07:02 Key = ftime, Value = 2018-05-31 20:07:02 Key = context, Value = , 18106332770 Key = location, Value = null mapArr#20# Key = time, Value = 2018-05-31 20:07:02 Key = ftime, Value = 2018-05-31 20:07:02 Key = context, Value = , , 18106332770 Key = location, Value = null mapArr#21# Key = time, Value = 2018-05-30 10:57:46 Key = ftime, Value = 2018-05-30 10:57:46 Key = context, Value = 98 , 18221459909 Key = location, Value = null mapArr#22# Key = time, Value = 2018-05-30 10:57:46 Key = ftime, Value = 2018-05-30 10:57:46 Key = context, Value = 98 , , 18221459909 Key = location, Value = null mapArr#23# Key = time, Value = 2018-05-29 19:53:25 Key = ftime, Value = 2018-05-29 19:53:25 Key = context, Value = , 18577846400 Key = location, Value = null mapArr#24# Key = time, Value = 2018-05-25 09:44:25 Key = ftime, Value = 2018-05-25 09:44:25 Key = context, Value = , , 15377667309 Key = location, Value = null mapArr#25# Key = time, Value = 2018-05-25 09:44:24 Key = ftime, Value = 2018-05-25 09:44:24 Key = context, Value = , 15377667309 Key = location, Value = null mapArr#26# Key = time, Value = 2018-05-23 12:16:35 Key = ftime, Value = 2018-05-23 12:16:35 Key = context, Value = , , 17723937369 Key = location, Value = null mapArr#27# Key = time, Value = 2018-05-23 12:16:32 Key = ftime, Value = 2018-05-23 12:16:32 Key = context, Value = , 17723937369 Key = location, Value = null mapArr#28# Key = time, Value = 2018-05-09 11:07:09 Key = ftime, Value = 2018-05-09 11:07:09 Key = context, Value = , 18870011859 Key = location, Value = null mapArr#29# Key = time, Value = 2018-05-09 11:07:09 Key = ftime, Value = 2018-05-09 11:07:09 Key = context, Value = , , 18870011859 Key = location, Value = null mapArr#30# Key = time, Value = 2018-05-06 10:13:51 Key = ftime, Value = 2018-05-06 10:13:51 Key = context, Value = 5 , , 15966106271 Key = location, Value = null mapArr#31# Key = time, Value = 2018-05-06 10:13:51 Key = ftime, Value = 2018-05-06 10:13:51 Key = context, Value = 5 , 15966106271 Key = location, Value = null mapArr#32# Key = time, Value = 2018-04-25 13:25:07 Key = ftime, Value = 2018-04-25 13:25:07 Key = context, Value = 14 1-7 , , 17318411160 Key = location, Value = null mapArr#33# Key = time, Value = 2018-04-25 13:25:07 Key = ftime, Value = 2018-04-25 13:25:07 Key = context, Value = 14 1-7 , 17318411160 Key = location, Value = null mapArr#34# Key = time, Value = 2018-04-23 09:14:53 Key = ftime, Value = 2018-04-23 09:14:53 Key = context, Value = 17 , 18168989760 Key = location, Value = null mapArr#35# Key = time, Value = 2018-04-23 09:14:53 Key = ftime, Value = 2018-04-23 09:14:53 Key = context, Value = 17 , , 18168989760 Key = location, Value = null mapArr#36# Key = time, Value = 2018-04-08 14:55:39 Key = ftime, Value = 2018-04-08 14:55:39 Key = context, Value = 1 33 , , 13123712883 Key = location, Value = null mapArr#37# Key = time, Value = 2018-04-08 14:55:39 Key = ftime, Value = 2018-04-08 14:55:39 Key = context, Value = 1 33 , 13123712883 Key = location, Value = null mapArr#38# Key = time, Value = 2018-04-07 14:58:29 Key = ftime, Value = 2018-04-07 14:58:29 Key = context, Value = , , 18192082506 Key = location, Value = null mapArr#39# Key = time, Value = 2018-04-07 14:58:29 Key = ftime, Value = 2018-04-07 14:58:29 Key = context, Value = , 18192082506 Key = location, Value = null mapArr#40# Key = time, Value = 2018-04-05 09:11:53 Key = ftime, Value = 2018-04-05 09:11:53 Key = context, Value = 17 , , 18918021456 Key = location, Value = null mapArr#41# Key = time, Value = 2018-04-05 09:11:53 Key = ftime, Value = 2018-04-05 09:11:53 Key = context, Value = 17 , 18918021456 Key = location, Value = null mapArr#42# Key = time, Value = 2018-03-13 11:30:29 Key = ftime, Value = 2018-03-13 11:30:29 Key = context, Value = 8 106 , 13755027160 Key = location, Value = null mapArr#43# Key = time, Value = 2018-03-13 11:30:29 Key = ftime, Value = 2018-03-13 11:30:29 Key = context, Value = 8 106 , , 13755027160 Key = location, Value = null mapArr#44# Key = time, Value = 2018-03-10 20:16:41 Key = ftime, Value = 2018-03-10 20:16:41 Key = context, Value = , , 17610012989 Key = location, Value = null mapArr#45# Key = time, Value = 2018-03-10 20:16:41 Key = ftime, Value = 2018-03-10 20:16:41 Key = context, Value = , 17610012989 Key = location, Value = null mapArr#46# Key = time, Value = 2018-03-09 12:25:35 Key = ftime, Value = 2018-03-09 12:25:35 Key = context, Value = 800 , , 18105389267 Key = location, Value = null mapArr#47# Key = time, Value = 2018-03-09 12:25:35 Key = ftime, Value = 2018-03-09 12:25:35 Key = context, Value = 800 , 18105389267 Key = location, Value = null mapArr#48# Key = time, Value = 2018-03-01 08:17:17 Key = ftime, Value = 2018-03-01 08:17:17 Key = context, Value = 19 21 , , 15737044817 Key = location, Value = null mapArr#49# Key = time, Value = 2018-03-01 08:17:17 Key = ftime, Value = 2018-03-01 08:17:17 Key = context, Value = 19 21 , 15737044817 Key = location, Value = null mapArr#50# Key = time, Value = 2018-01-26 21:59:03 Key = ftime, Value = 2018-01-26 21:59:03 Key = context, Value = A 16 , , 13664776468 Key = location, Value = null mapArr#51# Key = time, Value = 2018-01-26 21:59:03 Key = ftime, Value = 2018-01-26 21:59:03 Key = context, Value = A 16 , 13664776468 Key = location, Value = null mapArr#52# Key = time, Value = 2018-01-24 11:37:47 Key = ftime, Value = 2018-01-24 11:37:47 Key = context, Value = 2 , , 13956927234 Key = location, Value = null mapArr#53# Key = time, Value = 2018-01-24 11:37:27 Key = ftime, Value = 2018-01-24 11:37:27 Key = context, Value = 2 , 13956927234 Key = location, Value = null mapArr#54# Key = time, Value = 2018-01-13 16:17:08 Key = ftime, Value = 2018-01-13 16:17:08 Key = context, Value = 418 , 15801900095 Key = location, Value = null mapArr#55# Key = time, Value = 2018-01-13 16:17:08 Key = ftime, Value = 2018-01-13 16:17:08 Key = context, Value = 418 , , 15801900095 Key = location, Value = null mapArr#56# Key = time, Value = 2018-01-10 18:11:23 Key = ftime, Value = 2018-01-10 18:11:23 Key = context, Value = , , 15850947167 Key = location, Value = null mapArr#57# Key = time, Value = 2018-01-10 18:11:23 Key = ftime, Value = 2018-01-10 18:11:23 Key = context, Value = , 15850947167 Key = location, Value = null mapArr#58# Key = time, Value = 2018-01-07 19:42:41 Key = ftime, Value = 2018-01-07 19:42:41 Key = context, Value = 【 】 , 18946131929 Key = location, Value = null mapArr#59# Key = time, Value = 2017-12-18 17:17:58 Key = ftime, Value = 2017-12-18 17:17:58 Key = context, Value = 9 2 , , 15340979298 Key = location, Value = null mapArr#60# Key = time, Value = 2017-12-18 17:17:58 Key = ftime, Value = 2017-12-18 17:17:58 Key = context, Value = 9 2 , 15340979298 Key = location, Value = null mapArr#61# Key = time, Value = 2017-12-18 16:37:45 Key = ftime, Value = 2017-12-18 16:37:45 Key = context, Value = 40 , 15208326965 Key = location, Value = null mapArr#62# Key = time, Value = 2017-12-18 16:37:45 Key = ftime, Value = 2017-12-18 16:37:45 Key = context, Value = 40 , , 15208326965 Key = location, Value = null mapArr#63# Key = time, Value = 2017-12-06 14:43:57 Key = ftime, Value = 2017-12-06 14:43:57 Key = context, Value = - , 021-50831622 Key = location, Value = null mapArr#64# Key = time, Value = 2017-12-06 14:43:57 Key = ftime, Value = 2017-12-06 14:43:57 Key = context, Value = - , , 021-50831622 Key = location, Value = null mapArr#65# Key = time, Value = 2017-11-30 13:49:45 Key = ftime, Value = 2017-11-30 13:49:45 Key = context, Value = 15 , 023-63417526 Key = location, Value = null mapArr#66# Key = time, Value = 2017-11-30 13:49:45 Key = ftime, Value = 2017-11-30 13:49:45 Key = context, Value = 15 , , 023-63417526 Key = location, Value = null mapArr#67# Key = time, Value = 2017-11-26 12:45:35 Key = ftime, Value = 2017-11-26 12:45:35 Key = context, Value = 11 , 15068885505 Key = location, Value = null mapArr#68# Key = time, Value = 2017-11-26 09:14:57 Key = ftime, Value = 2017-11-26 09:14:57 Key = context, Value = 9 , 13546317781 Key = location, Value = null mapArr#69# Key = time, Value = 2017-11-26 09:14:57 Key = ftime, Value = 2017-11-26 09:14:57 Key = context, Value = 9 , , 13546317781 Key = location, Value = null mapArr#70# Key = time, Value = 2017-11-18 15:28:25 Key = ftime, Value = 2017-11-18 15:28:25 Key = context, Value = , , 18353222003 Key = location, Value = null mapArr#71# Key = time, Value = 2017-11-18 15:28:24 Key = ftime, Value = 2017-11-18 15:28:24 Key = context, Value = , 18353222003 Key = location, Value = null mapArr#72# Key = time, Value = 2017-11-12 14:37:23 Key = ftime, Value = 2017-11-12 14:37:23 Key = context, Value = 6 1 101 , 13855871959 Key = location, Value = null mapArr#73# Key = time, Value = 2017-11-12 14:37:23 Key = ftime, Value = 2017-11-12 14:37:23 Key = context, Value = 6 1 101 , , 13855871959 Key = location, Value = null mapArr#74# Key = time, Value = 2017-10-26 12:02:51 Key = ftime, Value = 2017-10-26 12:02:51 Key = context, Value = 20 , , 18560465196 Key = location, Value = null mapArr#75# Key = time, Value = 2017-10-26 12:02:51 Key = ftime, Value = 2017-10-26 12:02:51 Key = context, Value = 20 , 18560465196 Key = location, Value = null mapArr#76# Key = time, Value = 2017-10-26 11:23:19 Key = ftime, Value = 2017-10-26 11:23:19 Key = context, Value = 01 , , 0351-2397126 Key = location, Value = null mapArr#77# Key = time, Value = 2017-10-26 11:23:19 Key = ftime, Value = 2017-10-26 11:23:19 Key = context, Value = 01 , 0351-2397126 Key = location, Value = null mapArr#78# Key = time, Value = 2017-10-23 16:30:34 Key = ftime, Value = 2017-10-23 16:30:34 Key = context, Value = , , 18158928623 Key = location, Value = null mapArr#79# Key = time, Value = 2017-10-23 16:30:34 Key = ftime, Value = 2017-10-23 16:30:34 Key = context, Value = , 18158928623 Key = location, Value = null mapArr#80# Key = time, Value = 2017-10-12 22:11:23 Key = ftime, Value = 2017-10-12 22:11:23 Key = context, Value = B4 3 , 18945009357 Key = location, Value = null mapArr#81# Key = time, Value = 2017-10-12 22:11:23 Key = ftime, Value = 2017-10-12 22:11:23 Key = context, Value = B4 3 , , 18945009357 Key = location, Value = null mapArr#82# Key = time, Value = 2017-09-26 11:24:53 Key = ftime, Value = 2017-09-26 11:24:53 Key = context, Value = , , 18014730012 Key = location, Value = null mapArr#83# Key = time, Value = 2017-09-26 11:24:52 Key = ftime, Value = 2017-09-26 11:24:52 Key = context, Value = , 18014730012 Key = location, Value = null mapArr#84# Key = time, Value = 2017-09-01 20:12:51 Key = ftime, Value = 2017-09-01 20:12:51 Key = context, Value = , , 18552351543 Key = location, Value = null mapArr#85# Key = time, Value = 2017-09-01 20:12:51 Key = ftime, Value = 2017-09-01 20:12:51 Key = context, Value = , 18552351543 Key = location, Value = null mapArr#86# Key = time, Value = 2017-08-30 09:02:31 Key = ftime, Value = 2017-08-30 09:02:31 Key = context, Value = 【 】 , 13337713618 Key = location, Value = null mapArr#87# Key = time, Value = 2017-08-23 09:12:48 Key = ftime, Value = 2017-08-23 09:12:48 Key = context, Value = , 17743125815 Key = location, Value = null mapArr#88# Key = time, Value = 2017-08-23 09:12:48 Key = ftime, Value = 2017-08-23 09:12:48 Key = context, Value = , , 17743125815 Key = location, Value = null mapArr#89# Key = time, Value = 2017-07-24 21:17:01 Key = ftime, Value = 2017-07-24 21:17:01 Key = context, Value = , 63762999 Key = location, Value = null mapArr#90# Key = time, Value = 2017-07-19 11:51:15 Key = ftime, Value = 2017-07-19 11:51:15 Key = context, Value = , 13677824226 Key = location, Value = null mapArr#91# Key = time, Value = 2017-06-22 13:26:09 Key = ftime, Value = 2017-06-22 13:26:09 Key = context, Value = 100 , , 13014796333 Key = location, Value = null mapArr#92# Key = time, Value = 2017-06-22 13:26:09 Key = ftime, Value = 2017-06-22 13:26:09 Key = context, Value = 100 , 13014796333 Key = location, Value = null mapArr#93# Key = time, Value = 2017-06-07 11:21:03 Key = ftime, Value = 2017-06-07 11:21:03 Key = context, Value = , 13370110797 Key = location, Value = null mapArr#94# Key = time, Value = 2017-06-07 11:21:03 Key = ftime, Value = 2017-06-07 11:21:03 Key = context, Value = , , 13370110797 Key = location, Value = null It's OK! , 0

좋은 웹페이지 즐겨찾기