Ok, so I have a array
String[] sound = new String[2]
sound[0] = nameSound;
sound[1] = routeSound;
and this Array is in an Array
String[] Sounds[]= new String[1][];
Sounds[0]=sound;
I just made an Array, but I will have a lot of arrays
And if the users write nameSound "name", It has to be compared to the nameSound of every vector called sound, when it is found, I want something like
System.out.print(nameSound);
Any ideas are appreciated :)