Quote:
|
Originally Posted by Xyhm
You can't declare the same variable twice. But you can, I think, declare "String[] inputStringFinal" somewhere in the beginning, and then assign to "inputStringFinal".
This doesn't work:
String [] s = new String[1];
String [] s = new String[2];
But this does:
String[] s;
s = new String[1];
s = new String [2];
|
Thanks!! That solves the problem.