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");
それでもいくつかの例外をスローします。
私は何が欠けていますか?