Java - 获取JSON对象数组?

时间:2012-12-05 04:29:29

标签: java json

我正在尝试使用Java获取http://status.mojang.com/check中列出的信息。 我知道它是JSON所以我试图在互联网上使用varoius示例获取该信息,但我似乎无法弄清楚出了什么问题。

这是我的代码: http://pastebin.com/USYy93kZ

有谁知道我该怎么做?

1 个答案:

答案 0 :(得分:1)

- 尝试在您的课程中使用以下方法解析JSON。

private static String readAll(BufferedReader rd) throws IOException {
    StringBuilder sb = new StringBuilder();


    String cp = new String();

    while((cp=rd.readLine())!=null){

        sb.append(cp);
    }
    return sb.toString();
  }


public static JSONArray 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);

      JSONArray arr = new JSONArray(jsonText);

      //System.out.println(arr.toString(2));

      return arr;
    } finally {
      is.close();
    }
  }


 public JSONArray go() throws IOException, JSONException {
        JSONArray json = readJsonFromUrl("http://www.comparestructuredproducts.com/AppData.aspx");

        return json;



      }