I got the JSON (encoded) format of nested arrays that 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 large array that contains three arrays (sometimes it can be 2 or more than three arrays), and each of these three arrays contains some arrays in this example.
What is the reverse procedure (decoded format)? I mean, if I want these values ββfrom these arrays.
I tried the org.json Java API, this is correct:
JSON JSONArray list = new JSONArray(); list.get()