I've got lots of data stored like this
["5368","45946","532.3602831594635","8.559239940387481"]
That I have to iterate over.
What is the most efficient way to access these variables?
Currently I'm deserializing into a List> however and accessing get(0).get(0) or whatever, but it's slow on big amounts of data.
> however and acessing get(0).get(0) or whatever, but it's slow on big amounts of data.
– beek Jun 10 '15 at 00:33