I'm writing a loop that will exit itself when the scanner receives the string "end". Though, when i type in end the loop continues. so if file = the input, then if(file=="end") is false, even though i typed in end! It's driving me crazy and i'd very much appreciate if anyone could give their thoughts on where this has went wrong. This is not part of a homework assignment or anything, i am doing it for kicks - so don't worry about me asking you to do my work or anything. The code is below.
String file = "";
Scanner in = new Scanner(System.in);
ArrayList<Integer> fileInput = new ArrayList<Integer>();
while(file!="end") {
// Scan for filename/end program
System.out.println("Provide the name of a file in the \"bin/\" folder, i will assume it's .txt");
file = in.nextLine();
System.out.println("." + file + ".");
if(file!="end") {
file= "bin/" + file + ".txt";
// start reading
try {
// If file found then carry on
BufferedReader openFile = new BufferedReader(new FileReader(file));
fileInput = readIn(openFile);
int lowerBound = getLower(fileInput);
int upperBound = getUpper(fileInput);
System.out.println("Lower Bound: " + lowerBound);
System.out.println("Upper Bound: " + upperBound);
// file not found
} catch (FileNotFoundException e) {
System.out.println("File not found!");
}
}
}
System.out.println("Goodbye!");
System.exit(0);
Thanks!