2017-09-05 20 views
-1
private static int[] loadMarks(String fileName) throws IOException { 

    int[] marks = new int[94]; 
    /* complete */ 
    Scanner input = new Scanner(fileName); 
    for(int i=0;i<94;i++) { 
     marks[i]=input.nextInt(); 
    } 
    return marks; 
} 
+0

を解析する場合、これを試してみてください入力は文字列またはint型を供給しているのですか?スキャナがループ内で初期化されていれば動作しますか? – jidexl21

+0

数字のみを含むファイルをスキャンしています –

答えて

0
Scanner input = new Scanner(new File(fileName)); 

あなたの目標は、ファイルの内容ではなく、実際の文字列filename

関連する問題