I want to create an array that has multiple index and in each index i want to place multiple values in single index
for example
String testArr= new String[65];
testArr[0]= {"1,2,3,4,5,56,6,7,8,9"};
testArr[1]={"11.12,1,14.1,6.43"};
testArr[2]={"13,14,12,64,12.14"};
like this how can i achieve this
thanx in advance
use Two Dimensional array