i have a sample array in my js file that should be passed on to DWR but I couldn't get the keys and values of the all the data in each object.
var sample = [
{ "first" : "carl",
"last" : "dee",
"bank" : [
{ "accountNum" : "123" },
{ "accountNum":"456"}
]
},
{ "first" : "kara",
"last" : "king",
"bank" : [
{ "accountNum" : "3B" },
{ "accountNum" : "4B"}
]
}
];
I tried this but I'm getting error: JSONArray[0] is not a JSONObject
public String testDWR(JSONArray sampleArray)
for(int j=0;j < sampleArray.size(); j++){
JSONArray testArray = sampleArray).getJSONObject(j).getJSONArray("bank");
for(Object o: seatArray){
System.out.println(o);
}
}
I also tried but none of it seems to work
public String testDWR(JSONArray sampleArray)
for(Object a: sampleArray){
JSONObject testObject = JSONObject.fromObject(a);
JSONArray bankArray= testObject.getJSONArray("bank");
for(int i=0;i < bankArray.size();i++){
JSONObject e = bankArray.getJSONObject(i);
System.out.println(e.getString("accountNum"));
}
}
It's either I get this error JSONArray[0] is not a JSONObject or I'm getting this first:reference:c0-e2, last:reference:c0-e3 as my sysout. Please help, what is the correct code for me to be able to get the id and value for each id. Thanks