HttpEntity的結果解析爲JSON

String result=EntityUtils.toString(response.getEntity());

       // 方式1
        // 生成 JSON 對象
        JSONObject obj = JSONObject.parseObject(result);
        System.out.println(obj.toString());

        String source = obj.getString("_source");
        System.out.println(source);

        // 方式2
        // 解析成Map對象
        Map mapType = JSON.parseObject(result,Map.class);  
        for (Object object : mapType.keySet()){  
                System.out.println("key爲:"+object+"值爲:"+mapType.get(object));  
        }
相關文章
相關標籤/搜索