我有一个像这样的json字符串
{
"999999999":"{"
CustomerVO {
username='Ashwin',
password='12345',
confirmpassword='12345',
mobilenumber='1010121214',
emailid='addsd@g.c',
address='kanpur',
pincode='741025'
}"
}
}
答案 0 :(得分:0)
答案 1 :(得分:0)
您可以使用Google API gson
解析器
e.g
JsonObject jobj = new Gson().fromJson(response, JsonObject.class);
jsonresponse = jobj.get("status").getAsString();