i wanted to know how I can convert this string here to an array:
[{"title":"test","birth":"20.05"},{"title":"test","birth":"13.05"},{"title":"test","birth":"13.06"},{"title":"test","birth":"23.06"},{"title":"test","birth":"01.12"},{"title":"test","birth":"01.06"}]
I already found this here:
JSONObject jsnobject = new JSONObject(readlocationFeed);
JSONArray jsonArray = jsnobject.getJSONArray("locations");
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject explrObject = jsonArray.getJSONObject(i);
But if I try to make the object I always get null. And here:
JSONArray jsonArray = jsnobject.getJSONArray("locations");
I don't know what I should enter as "locations". Should I enter "[]" ?
Thanks really much for help!
Daniel