Using a web service I'm requesting histogram data. The data is a set of arrays inside an array:
[[1375056000000,23.284713745117],[1375142400000,3.809531211853],
[1375228800000,9.6309003829956],[1375315200000,2.7411839962006]]
I want to be able to store the key pair values in a Hash Map. Usually I would iterate through a JSONArray and access objects using jsonObject.getInt("whatever"), but in this case I can't. Not sure how to achieve this.
Thanks in advance =)