I have declared List<String> listOfValues = new ArrayList<String>();
It's outputs look like this:
[0.0,100.0,5.0],[1.0,200.0,8.0],[2.0,600.0,2.0],....
So for example, by calling listOFvalues.get(0) I would access 0.0,100.0,5.0
What I'm trying to do is, access and store its column values.
So basically I need store 0.0,1.0,2.0 as the first array/arrayList, 100.0,200.0,600.0 as the 2nd and so on.
The problem is, so far, I'm only able to get the whole Row (with listOfValues.get()).