所以我有一個Json文件,我已經解析,並且我想知道如何將Json文件中的信息獲取到屏幕上? Heres解析了Json。輸出解析的Json數據
public String loadJSONFromAsset()
{
String json = null;
try
{
InputStream is = getAssets().open("JSON.json");
int size = is.available();
byte[] buffer = new byte[size];
is.read(buffer);
is.close();
json = new String(buffer, "UTF-8");
}
catch(IOException ex)
{
ex.printStackTrace();
return null;
}
return json;
}
JSON:
{"answers":[
{
"answer": "1"
},
{
"answer": "2"
},
{
"answer": "3"
},
{
"answer": "4"
},
{
"answer": "5"
}
]}
如何獲得例如 「4」 到一個變量?我希望我的問題很清楚,如果不是的話,評論。我想要做的只是輸出其中一個數字。
檢查此http:// stackoverflow.com/questions/2591098/how-to-parse-json-in-java?rq=1 –