I need help working on my Java project. Any amount is welcome.
The project needs to prompt the user for a file input (txt), file output, and five words to search through the input file. Each input needs to be equipped with try and catch code to prevent crashing. The program then counts each instance of the word in the input file and outputs the results in the designated output file entered by the user.
I'm currently just working on the file input portion and trying to prompt the user to "Enter input file" even after the first attempt was caught by the catch FileNotFound Exception.
Here's my current code.
import java.util.Scanner;
import java.io.File;
import java.io.PrintWriter;
import java.io.FileNotFoundException;
public class WordCounter{
public static void readFile (){
String word = "";
System.out.println("Enter input file:");
Scanner scanner = new Scanner (System.in);
File file = new File(scanner.next());
String line = "";
try{
scanner = new Scanner (file);
}
catch(FileNotFoundException exception){
System.out.println(exception);
System.out.println("Not a valid file");
System.out.println("Enter input file:");
}
while (scanner.hasNextLine()){
line = scanner.nextLine ();
}
System.exit(0);
scanner.close();
}