在 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");
但仍然抛出一些异常。
我错过了什么?