我必须返回我所有的 JSON 字符串。例如我有一个 json 字符串:
[{"Locationvalue":"Payroll - 9","LocationId":"465","IsSelected":false}]
并且还返回了第二个 JSON 字符串:
[{"CC2Description":"Denver - DN","CC2":"DN","isSelected":false},{"CC2Description":"Las Vegas - LV","CC2":"LV","isSelected":false}]
等等。
在android中我写了这个:
JSONArray JsonObject = new JSONArray(JsonString.toString());
for(int i=0;i<JsonObject.length();i++)
{
Log.v("log", JsonObject.getString(i));
}
但我只能访问一个 JSON 数组。我还想要其他 JSON 数组。