String[][] aS= new String[16][3];
String[] s0 ={"FIELD0", "FIELD1", "FIELD2"};
String[] s1 ={"FIELD0", "FIELD1", "FIELD2"};
String[] s2 ={"FIELD0", "FIELD1", "FIELD2"}; ...
String[] s15 ={"FIELD0", "FIELD1", "FIELD2"};
for(int i=0;i<aS.length;i++)
{
for(int j=0;j<3;j++)
{
//error!
aS[i][j]= s+"i"+[j]; //s0[0],s0[1]...s15[3]
}
}
Im familiar with multidimensional arrays, im just not abot to figure out how this part can be fixed: " s+"i"+[j]; "
Edit:[error] Syntax error on token "+", Expression expected after this token