1

ループする方法を理解するのに助けが必要IOExceptionです(有効なファイルが入力されるまでファイル名を要求する場所で)。無効なファイルが入力されたことを何らかの形で認識するループが必要で、これを行う方法がわかりません。

import java.util.*;
import java.io.*;
public class JavaGradedLab {
    public static void main(String[] args) throws IOException {

        Scanner inScan, fScan = null;
        int [] A = new int[5];
        inScan = new Scanner(System.in);
        System.out.println("Please enter the file to read from: ");

        try{
            String fName = inScan.nextLine();
            fScan = new Scanner(new File(fName));
        }

        catch (FileNotFoundException ex)
        {
            System.out.println("Your file is invalid -- please re-enter");
        }

        String nextItem;
        int nextInt = 0;
        int i = 0;

        while (fScan.hasNextLine())
        {
            nextItem = fScan.nextLine();
            nextInt = Integer.parseInt(nextItem);
            A[i] = nextInt;
            i++;
        }

        System.out.println("Here are your " + i + " items:");
        for (int j = 0; j < i; j++)
        {
            System.out.println(A[j] + " ");
        }
    }
}
4

1 に答える 1

1

さて、ベストプラクティスなどを介してコードを改善する方法を説明する人がいるはずですが、それ自体はおそらく改善できる非常に基本的な答えとして(入力が有効なときにコードが機能すると仮定して):

while(true) {
    try{
        String fName = inScan.nextLine();
        fScan = new Scanner(new File(fName));
        break;
    }
    catch (FileNotFoundException ex)
    {
        System.out.println("Your file is invalid -- please re-enter");
    }
}
于 2012-11-26T03:57:38.613 に答える