入力ファイルを読み込んで出力ファイルを作成するコードを記述しようとしていました。しかし、正しい入力ファイル名が入力されるまで試してみると、問題がありました。 FileNotFoundException
を投げることがありますtry
ブロックには方法がありませんjavaは、filenotfoundexceptionがなくなるまで試し続けます。
public static void main(String[] args) throws FileNotFoundException
{
//prompt for the input file name
Scanner in = new Scanner(System.in);
//keep trying until there are no more exceptions
//boolean done = false;
String inputfilename = " ";
while (!done)
{
try
{
System.out.print("Input file name (from your computer): ");
inputfilename = in.next();
done = true;
}
catch (FileNotFoundException exception)
{
System.out.println("****** ERROR ******\nCannot locate the input file '" + inputfilename + "' on your computer - please try again.");
}
}
//prompt for the output file name
System.out.print("What would you like to call your output file: ");
//use outputfilename variable to hold input value;
String outputfilename = in.next();
//construct the Scanner and PrintWriter objects for reading and writing
File inputfile = new File(inputfilename);
Scanner infile = new Scanner(inputfile);
PrintWriter out = new PrintWriter(outputfilename);
//read the input and write the output
out.println("Here is the class average for mstu4031:\n");
double totalgrade = 0;
double number = 0;
while (infile.hasNextDouble())
{
double grade = infile.nextDouble();
out.println("\n");
out.printf("%.1f\n",grade);
number++;
totalgrade = totalgrade + grade;
}
//print numbers and average in output file
out.println("\n\n");
out.printf("\nNumber of grades: %.1f",number);
//calculate average
double average = totalgrade/number;
out.println("\n\n");
out.printf("\nAverage: %.2f",average);
finally
{
in.close();
out.close();
}
}
'私は問題を抱えているが、それが適切にFileNotFound例外がtry'にあるではない示しています。その意味を説明できますか? – YoungSpice
入手した特定のエラーメッセージを追加してください。 – Tophandour
あなたのコードでは、変数 'done'の宣言がコメントアウトされているので、あなたのコードはコンパイルされませんが、それは誤植であると思います。 – aleb2000