i want to take inputs from a text file to arrays to use later in the program
i tried this but i always get a null output
String[] anArray;
anArray = new String[10];
Scanner input = new Scanner(file).useDelimiter(" ");
while (input.hasNext()) {
if (input.equals("Add_Emp_Name")) {
for (int i = 0; i > 10; i++) {
anArray[i] = input.next();
}
}
Comments
Leave a comment