1

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

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

有谁知道我该怎么做?

4

1 回答 1

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;



      }
于 2012-12-05T04:32:25.507 回答