第一个 JSON
{value:[{"sk_service":"1","hour":"0","sum(transaction)":"1636"}]}
第二个 JSON
{value:[{"sk_service":"1","month":"04","sum(transaction)":"19572"}]}
然后我这样做是为了从我的 json 中知道属性
String a= JSONArray.getJSONObject(0).names().getString(0); //0
String b= JSONArray.getJSONObject(0).names().getString(1); //1
结果 :
第一个json
a = sum(transaction) //index 0.
b = hour //index 1.
第二个json
a = month //index 0.
b = sum(transaction) //index 1.
为什么第一个和第二个json的结果不一致?