JSON看起来像:
this.LstCardsWithQt[i].Qt != 0
我知道如何获得{
"cover":"blabla.jpg",
"content":[
{
"article":"article_text",
"document":"document_text"
}
]
}
:
"cover"
但我怎样才能通过JSONObject json = new JsonObject(jsonStr);
json.get("cover");
键获得价值?
答案 0 :(得分:6)
您可以尝试这样的事情:
{
"tbl_perseroan": {
"mappings": {
"tbl_perseroan": {
"properties": {
"field_contain_json": {
"type":"string"
},
"name": {
"type": "string"
}
}
}
}
}
}
答案 1 :(得分:5)
哦,我做到了。感谢。
json.getJSONArray("content").getJSONObject(0).getString("article")