NoSuchElementException写入文件时

时间:2012-10-21 01:28:22

标签: java exception file-io exception-handling textinput

我正在编写一个从文件中读取字符串和整数的程序,然后复制数据并写入另一个文件。数据条目应以空格分隔。

我的输入应该和输出应该遵循以下格式,前两组数字是字符串,而其他数字是整数:

123123 242323 09 08 06 44

我运行代码时,在线程“main”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

2 个答案:

答案 0 :(得分:1)

我怀疑扫描仪的数据已耗尽 - 可能是因为其中的值少于6个。为避免错误,您应该执行以下操作:

if (space.hasNextInt()) {
    startingHour = space.nextInt();
}

答案 1 :(得分:0)

您的扫描程序正在尝试读取不存在或类型错误的令牌。我自己,我用“”作为我的分隔符拆分String,行,然后处理返回的数组。