0

データベースからJSON文字列を抽出し、テキストビューを更新したいのですが、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": []
    }
]


「意味」を抽出したいのですが、どうすればいいですか?

4

1 に答える 1

2

まず、これはJSON配列であり、そのmeaning中に多くのが含まれています。

次のように繰り返すことができます。

JSONArray jarr = new JSONArray(theJsonString);
for (int i = 0; i < jarr.length(); ++i)
{
    JSONObject jCell = jarr.getJSONObject(i);
    String meaning = cell.getString("meaning");
    // set it as text? concatenate the strings?
}

ノート:

  • コードを明確にするために、私は例外を処理しませんでした。コードでそれを実行してください。
  • JSON形式の詳細をご覧ください。
  • 次のクラスはandroidの一部です:JSONArrayJSONObject
  • 読む価値があります、次回は尋ねる必要はありません:)
于 2012-04-29T04:09:34.467 に答える