0

ファイルから文字列と整数を読み取り、データをコピーして別のファイルに書き込むプログラムを作成しています。データ入力はスペースで区切る必要があります。

入力と出力は次の形式に従う必要があります。最初の 2 つの数値セットは文字列で、その他は整数です。

123123 242323 09 08 06 44

コードを実行すると、スレッド「メイン」java.util.NoSuchElementException で例外が発生します。理由がわかりません。

import java.util.Scanner;
import java.io.*;

public class Billing {



    public static void main(String[] args)  throws IOException  {

        //define the variables


        String callingnumber;
        String callednumber;
        String line;
        int startinghour;
        int startingminute;
        int endinghour;
        int endingminute;


        //open input and output files
        FileReader freader = new FileReader("BillingData.txt");
        BufferedReader inFile = new BufferedReader(freader);


        FileWriter fwriter = new FileWriter("BillingOutput.txt");
        PrintWriter outFile = new PrintWriter (fwriter);

        // set space between the numbers
         line=inFile.readLine();
         while(line!=null)
         {
             //creat a scanner to use space between the numbers
             Scanner space = new Scanner(line).useDelimiter(" ");


             callingnumber=space.next();
             callednumber=space.next();
             startinghour=space.nextInt();
             startingminute=space.nextInt();
             endinghour=space.nextInt();
             endingminute=space.nextInt();



            // writing data to file
             outFile.printf("%s %s %d %d %d %d", callingnumber, callednumber,startinghour, startingminute, endinghour, endingminute);

             line=inFile.readLine();



         }//end while

         //close the files
         inFile.close();
         outFile.close();


    }//end of mine


}//end of class
4

2 に答える 2

1

スキャナーが行のデータを使い果たしたのではないかと思います-おそらく、値が6つ未満であるためです。エラーを回避するには、次のようにする必要があります。

if (space.hasNextInt()) {
    startingHour = space.nextInt();
}
于 2012-10-21T01:41:50.193 に答える
0

スキャナは、存在しないか、または間違ったタイプのトークンを読み込もうとしています。私自身、「」を区切り文字として使用して文字列の行を分割し、返された配列を処理します。

于 2012-10-21T01:40:57.533 に答える