gpt4 book ai didi

java - 从 CSV 文件读取解析错误/问题

转载 作者:行者123 更新时间:2023-12-01 17:48:18 25 4
gpt4 key购买 nike

您好,我在读取每行包含 3 列的 csv 文件时遇到问题。我似乎无法将最后一个单元格(3)解析为整数,即使它始终是“可解析”字符串:Berlin,Buenos Aires,7402 我似乎无法得到 7402 所有编译器抛出的是:

” 在 java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:68) 在 java.base/java.lang.Integer.parseInt(Integer.java:658) 在 java.base/java.lang.Integer.parseInt(Integer.java:776)

这是我的代码:

Scanner scan = new Scanner("worldcities.csv");
scan.useDelimiter("[,\\n]"); // get everything before a comma or a newline
while(scan.hasNext()) { // while this file has something then we
edge.v1 = scan.next(); // take vertice1 ----> city 1
edge.v2 = scan.next(); //take vertice2 ----> city 2
edge.e = Integer.parseInt(scan.next()); // parse the third value as int(distance between city1 and city2)
minheap.add(edge);
}
scan.close();

我似乎能够在调试器中很好地获取前两个值。

控制台只显示“

最佳答案

您可以使用 nextLine() 方法遍历文件行,如下例所示:

Scanner scanner = new Scanner(new File("worldcities.csv"));
while (scanner.hasNextLine()) {
String columns[] = scanner.nextLine().split(",");
edge.v1 = columns[0]; // take vertice1 ----> city 1
edge.v2 = columns[1]; //take vertice2 ----> city 2
edge.e = Integer.parseInt(columns[2]); // parse the third value as int(distance between city1 and city2)
minheap.add(edge);
}
scanner.close();

或者使用Files类而不使用Scanner:

List<String> rows = Files.readAllLines(Paths.get("worldcities.csv"));
for (String row : rows) {
String columns[] = row.split(",");
edge.v1 = columns[0]; // take vertice1 ----> city 1
edge.v2 = columns[1]; //take vertice2 ----> city 2
edge.e = Integer.parseInt(columns[2]); // parse the third value as int(distance between city1 and city2)
minheap.add(edge);
}

您还可以使用特殊的库来处理 CVS 文件,例如查看 Apache Commons CSV图书馆。

关于java - 从 CSV 文件读取解析错误/问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60828600/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com