-4

次のようなjsonデータ形式があります

{
   "status":200,
   "message":"ok",
   "response": {"result":1, "time": 0.0123, "values":[1,1,0,0,0,0,0,0,0]
   }
}

values 配列の値を 1 つ取得し、それを eclipse の textView に配置したいと考えています。日食で私のコードを見てください

protected void onPostExecute (String result){
try {
JSONobject json = new JSONObject(result);
tv.setText(json.toString(1));
}catch (JSONException e){
e.printStackTrace();
}
}
4

3 に答える 3