我正在尝试解析JSON以从中获取少量字段。下面是我的JSON -
{
"id": "100000224942080000",
"name": "Tech Geeky",
"first_name": "Tech",
"last_name": "Geeky",
"link": "https://www.facebook.com/tech.geeky",
"username": "tech.geeky",
"work": [
{
"employer": {
"id": "1854993931353456",
"name": "Tech"
},
"location": {
"id": "1119482345542155151",
"name": "Santa Cruz, California"
},
"position": {
"id": "280794135283124256",
"name": "Senior"
},
"start_date": "2012-01"
}
],
"education": [
{
"school": {
"id": "131182196916370",
"name": "Fatima School, Gonda"
},
"year": {
"id": "113125125403208",
"name": "2004"
},
"type": "High School"
}
],
"gender": "male"
}
我需要从上面的JSON中提取id
,name
,first_name
,last_name
,gender
。下面是我写的程序,但它以某种方式抛出异常。我在做什么错了?
public class JSONParser {
private static final String URL = "https://graph.facebook.com/me?access_token=AAAG2HjMOAsEBAGBhjx2RqqLbOvnAZAxEPQ0X7ZC2JWY0YcQZDZDSSSAFTR";
private static HashMap<String, String> output = null;
public static void main(String[] args) throws Exception {
StringBuilder builder = new StringBuilder();
DefaultHttpClient httpclient = new DefaultHttpClient();
output = new HashMap<String, String>();
BufferedReader bufferedReader = null;
try {
HttpGet httpget = new HttpGet(URL);
httpget.getRequestLine();
HttpResponse response = httpclient.execute(httpget);
HttpEntity entity = response.getEntity();
//System.out.println(response.getStatusLine());
if (entity != null) {
InputStream inputStream = entity.getContent();
bufferedReader = new BufferedReader(new InputStreamReader(inputStream));
for (String line = null; (line = bufferedReader.readLine()) != null;) {
builder.append(line).append("\n");
}
JSONObject jsonObject = new JSONObject(builder.toString());
JSONObject info = jsonObject.getJSONObject("id");
parseJSONObject(info, output);
}
} catch (Exception e) {
} finally {
try {
bufferedReader.close();
httpclient.getConnectionManager().shutdown();
} catch (IOException e) {
}
}
}
private static HashMap<String, String> parseJSONObject(JSONObject json,
HashMap<String, String> output) throws JSONException {
Iterator<String> keys = json.keys();
while (keys.hasNext()) {
String key = keys.next();
String val = null;
try {
JSONObject value = json.getJSONObject(key);
parseJSONObject(value, output);
} catch (Exception e) {
val = json.getString(key);
}
if (val != null) {
output.put(key, val);
}
}
return output;
}
}
异常: -
org.json.JSONException: JSONObject["id"] is not a JSONObject.
注意: - JSON是正确的。我稍微修改了JSON,然后在这里发布。因此,在这里复制粘贴可能会出现问题。但假设JSON是正确的..仍然会引发异常。
答案 0 :(得分:3)
您可以通过获取这样的数据类型值来获取字段:
int id = jsonObject.getInt("id");
String name = jsonObject.getString("name");
String firstName = jsonObject.getString("first_name");
String lastName = jsonObject.getString("last_name");
String gender = jsonObject.getString("gender");
答案 1 :(得分:1)
文件末尾附近有一个逗号:
"gender": "male",
----------------^
在尝试解析JSON之前,您可以使用JSONLint来验证您的JSON是否有效。一些解析器可能有点松懈并且会原谅一些错误,但大多数都非常严格。