私はJsonの応答を得ました。私はstring.my文字列から値を取得することはできませんよJson_responseがアンドロイドでの単純なJsonの解析
{"NameAllList":[{"Current":{"time":"2012-02-21T08:04:21","Name":"abcd"},
"Next":{"Name":"data1","StartTime":"2012-02-21T08:06:21"}},{"Current":{"time":"2012-02-21T08:14:21","Name":"defg"},
"Next":{"Name":"data2","StartTime":"2012-02-21T08:24:21"}},{"Current":{"time":"2012-02-21T08:28:21","Name":"ghij"},
"Next":{"Name":"data3","StartTime":"2012-02-21T08:34:21"}},{"Current":{"time":"2012-02-21T08:40:21","Name":"knmo"},
"Next":{"Name":"data4","StartTime":"2012-02-21T08:48:21"}}]}
ある
であり、私はこれを試してみました。
JSONObject jsonObj = new JSONObject(json_response);
JSONObject subObj = jsonObj.getJSONObject("Current");
String name_current =subObj.getString("Name");
「名前」の値を取得できません。私は何をしたのですか?上記の解析を行うためのリンクを提供します。
どのような文字列をエスケープシーケンスなしで文字列変数を作成することができますか? –
私たちはできません。だから私は編集した。 – Dray