如何从Java中使用数字作为标识符的JSON数组中获取值?

时间:2015-11-08 09:48:12

标签: java json

我试图解析JSON,这是来自Web of Trust API的响应。问题是API返回使用整数作为标识符的JSON,并且我很难获得我想要的值。我正在使用org.json:json

以下是JSON的示例:

{ 
    "google.com": { 
        "target": "google.com", 
        "0": [ 94, 73 ],
        "1": [ 94, 73 ],
        "2": [ 94, 73 ],
        "4": [ 93, 66 ],
        "categories": { 
             "501": 99, 
             "301": 43 
        }
    } 
}

我试图从" 0"中获取值。和" 4"。

这是我用来解析它的Java代码:

package eclipseurlplugin.handlers;


import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.net.URL;
import java.nio.charset.Charset;

import org.json.JSONException;
import org.json.JSONObject;


public class JsonTest {

    private static String readAll(Reader rd) throws IOException {
        StringBuilder sb = new StringBuilder();
        int cp;
        while ((cp = rd.read()) != -1) {
          sb.append((char) cp);
        }
        return sb.toString();
      }

      public static JSONObject readJsonFromUrl(String url) throws IOException, JSONException {
        InputStream is = new URL(url).openStream();
        try {
          BufferedReader rd = new BufferedReader(new InputStreamReader(is, Charset.forName("UTF-8")));
          String jsonText = readAll(rd);
          JSONObject json = new JSONObject(jsonText);
          return json;
        } finally {
          is.close();
        }
      }

      public static void main(String[] args) throws IOException, JSONException {

        JSONObject json = readJsonFromUrl("http://api.mywot.com/0.4/public_link_json2?hosts=google.com/&key="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
        String jsonValue = json.getJSONObject("google.com").getString("0");
        System.out.println(jsonValue);      
      }
}

我尝试使用下面的代码来获取值但我得到了一个例外。有一个简单的方法吗?

String jsonValue = json.getJSONObject("google.com").getString("0");

感谢。

2 个答案:

答案 0 :(得分:0)

这是因为您尝试将列表作为String访问。所以:

jsonObj.getString("0")

适用于

{"0": "94, 73"}

但不适用于

{"0": [94, 73]}

您需要使用jsonObj.getJSONObject("0")来获取该列表。

答案 1 :(得分:-1)

IN {"0": [1, 2]} 0标识符有整数数组,所以只需得到如下的Json数组:

JSONArray msg = (JSONArray) json.getJSONObject("google.com").getJSONArray("0");