在讀取/解析Java中的以下JSON字符串時遇到問題。如何使用Java讀取JSON數據
代碼:
try{
json = new JSONObject(result);
//json now looks like this :-
// {'header': '[{"doc_no": "DN00001","stage":"P"}]','section':'[{"upper":100,"lower":1]'}
if (json != null){
// this line is throwing an exception!!
JSONObject header = new JSONObject("header");
}catch(JSONException e){
// Error Message
}
我也試過這樣:
JSONArray header = json.getJSONArray("header");
,但仍然拋出一些例外。
我錯過了什麼?
哪個例外? – hvgotcodes 2012-07-18 12:51:12
我想你需要從變量'json'中獲得'header'字段。創建新的JSONObject看起來很奇怪。 – nhahtdh 2012-07-18 12:52:55