【问题标题】:Error java.lang.NumberFormatException: For input string: ""错误 java.lang.NumberFormatException:对于输入字符串:“”
【发布时间】:2014-02-03 00:07:49
【问题描述】:

我正在尝试读取此文件

C101

VEHICLE
NUMBER     CAPACITY
  25         200

CUSTOMER
CUST NO.  XCOORD.   YCOORD.    DEMAND   READY TIME  DUE DATE   SERVICE   TIME

    0      40         50          0          0       1236          0   
    1      45         68         10        912        967         90   
    2      45         70         30        825        870         90   
    3      42         66         10         65        146         90   
    4      42         68         10        727        782         90   
    5      42         65         10         15         67         90   
    6      40         69         20        621        702         90   
    7      40         66         20        170        225         90   
    8      38         68         20        255        324         90   

但是当我读取文件时,程序会抛出这个异常:

Exception in thread "main" java.lang.NumberFormatException: For input string: ""
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
    at java.lang.Integer.parseInt(Integer.java:504)
    at java.lang.Integer.parseInt(Integer.java:527)
    at VRP.main(VRP.java:43)
Java Result: 1
BUILD SUCCESSFUL (total time: 0 seconds)

我检查了我的代码并调试了,但我找不到问题。

我使用了一个数组来保存列之间的所有空格(我只读取了前四列),然后是一个 ArrayList,但它不起作用。

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

    File f = new File("C101.txt");
    FileReader fr = new FileReader(f);
    BufferedReader reader = new BufferedReader(fr);

    String nada = reader.readLine();  //C101
    nada = reader.readLine();         //espacio en blanco
    nada = reader.readLine();         //vehicle=25
    nada = reader.readLine();         //number, capacity
    nada = reader.readLine();         //25, 200
    nada = reader.readLine();         //espacio en blanco
    nada = reader.readLine();         //customer
    nada = reader.readLine();         //encabezados
    nada = reader.readLine();         //espacio en blanco

    String[] espacios;
    int capacity = 200;
    int custno, xcoord, ycoord, demand;

    ArrayList<String> guardar = new ArrayList<String>();

    while (reader.ready()) {
        espacios = reader.readLine().trim().split(" ");
        for (int i = 0; i < espacios.length; i++) {
            guardar.add(espacios[i]);
        }
        custno = Integer.parseInt(espacios[0]);
        xcoord = Integer.parseInt(espacios[1]);
        ycoord = Integer.parseInt(espacios[2]);
        demand = Integer.parseInt(espacios[3]);
    }
}

很抱歉给您带来不便,感谢您的宝贵时间。

【问题讨论】:

    标签: java string exception integer numberformatexception


    【解决方案1】:

    您在一个空格上进行拆分,但整数列之间有多个空格

    espacios = reader.readLine().trim().split("\\s+");
    

    【讨论】:

    【解决方案2】:

    您必须确保 espacios[0]espacios[3] 实际上是整数。您可能应该做的是将它们打印出来进行检查。如果其中一个不是整数,Integer.parseInt() 将抛出该异常。

    【讨论】:

    • 但是所有的数字都是整数
    • @ArCiGo:您必须使用调试器或 println 任何东西。抛开所有假设。 1+ 到答案。
    • 我发现了错误:.txt文件末尾作者留了一个空格
    猜你喜欢
    • 2013-06-27
    • 1970-01-01
    • 1970-01-01
    • 2012-12-05
    • 2013-09-04
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多