さまざまな種類のデータのファイルを読み取るプログラムを作成しています。ファイルから作成したさまざまな配列にデータを渡そうとしています。
ファイルのサンプル部分 (改行のためダブルスペース。カテゴリ間の空白はタブ、姓名と国の間の空白はスペース)
Name Age Country Year Closing Date Sport Gold Silver Bronze Total
Joe Max 24 Algeria 2012 8/12/2012 Athletics 1 0 0 1
Tom Lan 27 United States 2008 8/24/2008 Rowing 0 1 0 1
しかし、コードをコンパイルすると、InputMismatchException が発生します。各行の終わりに続くタブがないという事実を扱っているかどうか疑問に思っています。誰でもこれで私を助けることができますか?
public static void main(String[] args) {
Scanner console = new Scanner(System.in);
intro();
Scanner input1 = null;
Scanner input2 = null;
int lineCount = 0;
try {
input1 = new Scanner(new File("olympicstest.txt"));
}
catch (FileNotFoundException e) {
System.out.println("Invalid Option");
System.exit(1);
}
while (input1.hasNextLine()) {
lineCount++;
input1.nextLine();
}
lineCount = lineCount - 1;
String[] country = new String[lineCount];
int[] totalMedals = new int[lineCount];
String[] name = new String[lineCount];
int[] age = new int[lineCount];
int[] year = new int[lineCount];
String[] sport = new String[lineCount];
try {
input2 = new Scanner(new File("olympicstest.txt"));
input2.useDelimiter("\t");
}
catch (FileNotFoundException e) {
System.out.println("Invalid Option"); // not sure if this line is needed
System.exit(1); // not sure if this line is needed
}
String lineDiscard = input2.nextLine();
for (int i = 0; i < lineCount; i++) {
name[i] = input2.next();
age[i] = input2.nextInt();
country[i] = input2.next();
year[i] = input2.nextInt();
input2.next(); // closing ceremony date
sport[i] = input2.next();
input2.nextInt(); // gold medals
input2.nextInt(); // silver medals
input2.nextInt(); // bronze medals
totalMedals[i] = input2.nextInt();
}
}