私のJSON応答は次のとおりです。
["Sting - We Work The Black Seam",
"Bob Marley - No woman no cry",
"Bob Marley - Redemption song",
"Peter Gabriel - Solsbury Hill",
"Elton John - Candle in the wind",
"Elton John - I'm still standing",
"Bernard Lavilliers - Noir et blanc",
"Michel Polnareff - Love me"]
まず、それが適切なJSONであるかどうかを知らせてください。もしそうなら、この情報を読む方法.. ?? 配列や単一要素の名前がないためです。
みなさん、ありがとうございました。
public ArrayList<String> createPlaylist(String result) {
try {
json = new JSONArray(result);
System.out.println("Json Values : " + json);
} catch (JSONException e) {
e.printStackTrace();
}
ArrayList<String> list = new ArrayList<String>();
if (json != null) {
int len = json.length();
for (int i = 0; i < len; i++) {
try {
list.add(json.get(i).toString());
} catch (JSONException e) {
e.printStackTrace();
}
}
}
return list;
}
これは正しいですか..plzは私に知らせてください..
よろしく、ムニカ