0

我有 GetRequest,作为响应,我得到了 HTML 头,body 元素的内容是 JSONS 数组。我无法解析它,任何人都可以发布如何从这个响应创建 JSON 对象的提示吗?

4

4 回答 4

0

我的问题是,当我从服务器下载请求时,我必须只获取元素的内容。比我使用标准 JSONArray 并且一切正常。

于 2013-01-09T19:49:12.230 回答
0
// Creating JSON Parser instance
JSONParser jParser = new JSONParser();

// getting JSON string from URL
JSONObject json = jParser.getJSONFromUrl(url);

try {
// Getting Array of Contacts
contacts = json.getJSONArray(TAG_CONTACTS);

// looping through All Contacts
for(int i = 0; i < contacts.length(); i++){
    JSONObject c = contacts.getJSONObject(i);

    // Storing each json item in variable
    String id = c.getString(TAG_ID);
    String name = c.getString(TAG_NAME);
    String email = c.getString(TAG_EMAIL);
    String address = c.getString(TAG_ADDRESS);
    String gender = c.getString(TAG_GENDER);

    // Phone number is agin JSON Object
    JSONObject phone = c.getJSONObject(TAG_PHONE);
    String mobile = phone.getString(TAG_PHONE_MOBILE);
    String home = phone.getString(TAG_PHONE_HOME);
    String office = phone.getString(TAG_PHONE_OFFICE);

}
} catch (JSONException e) {
 e.printStackTrace();
}
于 2013-01-08T19:47:46.130 回答
0

如果你有你的 JSON 返回值,String json你可以做

JSONArray a = new JSONArray(json);

然后可以使用 检索数组中的第一个 JSONObject

JSONObject o = a.getJSONObject(0);
于 2013-01-08T19:11:52.347 回答
0

您可以从这样的字符串创建 JSON 对象。

String myString = "This is the response from your HTTP GET request";
JSONObject myJson = new JSONObject(myString);

请注意, 的值myString必须是有效的 JSON。

于 2013-01-08T19:12:13.737 回答