J'essaie de lire un tableau JSON. Voici mon code.
JSONArray jArray = new JSONArray(jsonString);
System.out.println("*****JARRAY*****"+jArray.length());
for(int i=0;i<jArray.length();i++){
JSONObject json_data = jArray.getJSONObject(i);
Log.i("log_tag","_id"+json_data.getInt("account")+
", mall_name"+json_data.getString("name")+
", location"+json_data.getString("number")+
", telephone"+json_data.getString("url")+
",----"+json_data.getString("balance")+
",----"+json_data.getString("credit")+
",----"+json_data.getString("displayName")
);
}
Et mon exemple de syntaxe de fichiers JSON est le suivant,
{
"list": [
{
"account": 1,
"name": "card",
"number": "xxxxx xxxx xxxx 2002",
"url": "http://www.google.com",
"balance": 1.0,
"credit": 1.0,
"displayName": "hsbc bank"
},
{
"account": 2,
"name": "card2",
"number": "xxxxx xxxx xxxx 3003",
"url": "http://www.google.com",
"balance": 2.0,
"credit": 2.0,
"displayName": "nsb bank"
}
],
"count": 2
}
Il a une accolade frisée devant. Lorsque j'essaie d'exécuter ce bloc de code, il donne une erreur disant
Un texte JSONArray doit commencer par "[" au caractère 1 de ....
Quelqu'un a-t-il rencontré un problème comme celui-ci? Toute aide serait grandement appréciée. Veuillez me montrer un exemple de bloc de code si possible. Merci d'avance.
Un objet JSON commence par un {
et se termine par un }
tandis qu'un tableau JSON commence par un [
et se termine par un ]
.
Dans votre cas, changez votre code pour avoir un JSONObject
à la place.
JSONObject json = new JSONObject(jsonString);
JSONArray jArray = json.getJSONArray("list");
System.out.println("*****JARRAY*****" + jArray.length());
for(int i=0; i<jArray.length(); i++){
JSONObject json_data = jArray.getJSONObject(i);
Log.i("log_tag", "_id" + json_data.getInt("account") +
", mall_name" + json_data.getString("name") +
", location" + json_data.getString("number") +
", telephone" + json_data.getString("url") +
",----" + json_data.getString("balance") +
",----" + json_data.getString("credit") +
",----" + json_data.getString("displayName")
);
}
Vous devez d'abord créer un JSONObject pour obtenir le tableau, quelque chose comme ça devrait fonctionner:
JSONObject jsonObject = new JSONObject(jsonString);
JSONArray jArray = jsonObject.getJSONArray("list");
String result = js.getString ("Result");
JSONArray js2 = new JSONArray(result);
for (int i = 0; i < js2.length(); i++) {
JSONObject js3 = js2.getJSONObject(i);
categoriescity.add(js3.getString("Title"));
}