gpt4 book ai didi

java无法从文件中读取一行

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:07:29 26 4
gpt4 key购买 nike

我正在读取包含以下代码的文件:

 Scanner in = new Scanner(new File(fileName));
while (in.hasNextLine()) {
String[] line = in.nextLine().trim().split("[ \t]");
.
.
.
}

当我用 vim 打开文件时,有些行以以下特殊字符开头:

enter image description here

但是 java 代码无法读取这些行。当它到达这些行时,它认为它是文件的末尾并且 hasNextLine() 函数返回 false!!

编辑:这是提到的(有问题的)行的十六进制转储:

0000000:e280 9c20 302e 3230 3133 3220 302e 3231 ... 0.20132 0.210000010: 3431 392d 302e 3034 0a 419-0.04。

最佳答案

@VGR 做对了。

tl;dr:使用 Scanner in = new Scanner(new File(fileName), "ISO-8859-1");

似乎正在发生的事情是:

  • 由于那个单独的 0x9C 字符,您的文件不是有效的 UTF-8。
  • 扫描器正在以 UTF-8 格式读取文件,因为这是系统默认值
  • 底层库抛出一个MalformedInputException
  • 扫描仪捕获并隐藏它(一个善意但错误的设计决定)
  • 它开始报告它没有更多的行
  • 除非你真的问扫描器,否则你不会知道有什么问题

这是一个 MCVE:

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

class Test {
public static void main(String[] args) throws Exception {
Scanner in = new Scanner(new File(args[0]), args[1]);
while (in.hasNextLine()) {
String line = in.nextLine();
System.out.println("Line: " + line);
}
System.out.println("Exception if any: " + in.ioException());
}
}

这是一个正常调用的例子:

$ printf 'Hello\nWorld\n' > myfile && java Test myfile UTF-8
Line: Hello
Line: World
Exception if any: null

这就是您所看到的(只是您没有检索和显示隐藏的异常)。特别注意没有显示任何行:

$ printf 'Hello\nWorld \234\n' > myfile && java Test myfile UTF-8
Exception if any: java.nio.charset.MalformedInputException: Input length = 1

这里是当解码为 ISO-8859-1 时,所有字节序列都有效的解码(即使 0x9C 没有分配的字符,因此不会出现在终端中):

$ printf 'Hello\nWorld \234\n' > myfile && java Test myfile ISO-8859-1
Line: Hello
Line: World
Exception if any: null

如果您只对 ASCII 数据感兴趣并且没有任何 UTF-8 字符串,您可以通过将其作为第二个参数传递来简单地要求扫描器使用 ISO-8859-1Scanner 构造函数:

Scanner in = new Scanner(new File(fileName), "ISO-8859-1");

关于java无法从文件中读取一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52597998/

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