I got a JSON(encoded) format nested Arrays which looks like this;
[
[[1234,245,10],[312,234,122],[1234,67788,345],[235,001,332]],
[[1234,245,10],[312,234,122],[1234,67788,345],[235,001,332],[1234,67788,3450]],
[[1234,245,10],[312,234,122],[1234,67788,345],[235,001,332],[1234,67788,34534]]]
So I have one big array which contains three arrays (this can be 2 or more than three arrays sometimes) and each of these three arrays contains some arrays, in this above example.
What is the reverse procedure (decoded format)? I mean what if I want those values from these arrays.
I tried org.json Java API, is this right:
JSON JSONArray list = new JSONArray();
list.get()