我在 Json 下面有这个,我是从 .Net Web 服务获得的:
[["Developer","test","developer@test.com"]]
我检查了 jsonlint 验证器,它在 json 上面显示得很好。
因为它没有任何key
我不知道如何在 Android 中解析它。有人可以帮我如何在没有密钥的情况下解析这个json。
如果它有钥匙,我会尝试这个:
{"first":"somevalue","last":"someothervalue"} // Json response
JSONObject json_obj = new JSONObject(resp); //response is the json array
String first = json_obj.getString("first");
String last = json_obj.getString("last");
String test = "Hello! " + first + " " + last;
希望有人帮助:)
问候,
普拉文
我的解决方案
JSONArray respo = new JSONArray(resp); //resp is Json Array
respo = respo.getJSONArray(0);
String test = respo.getString(2);
test = "Your Email Address is " + test;