我想从数据库中提取一个 JSON 字符串并更新一个 textview。我的 Json 字符串如下所示:
[
{
"meaning": "A boy or young man (often as a form of address)",
"examples": [
"I read that book when I was a <em>lad</em>",
"come in, <em>lad</em>, and shut the door"
]
},
{
"meaning": "A group of men sharing recreational, working, or other interests",
"examples": [
"she wouldn't let him go out with the <em>lads</em> any more"
]
},
{
"meaning": "A man who is boisterously macho in his behavior or actions, esp. one who is interested in sexual conquest",
"examples": [
"Tony was a bit of a <em>lad</em>âalways had an eye for the women"
]
},
{
"meaning": "A stable worker (regardless of age or sex)",
"examples": []
}
]
我只想提取“意义”。我该怎么做?