SOLVED
Evening, new problem that makes my hair grey, if i have a
And i loop it thru with.Code:Vector<vector> rowDataIn = new Vector<vector>
rowDataIn.add(1);
rowDataIn.add(2);
It just loop thru the first one. Leaving the Object done with the result [1, 2] and not 1 2 as i would like. How can this be solved?Code:Iterator iterator = rowDataIn.iterator();
while (iterator.hasNext()){
done = iterator.next();
}

