gpt4 book ai didi

java - 为什么使用 readUTF 读取时出现 EOF 异常?

转载 作者:行者123 更新时间:2023-12-02 03:38:45 25 4
gpt4 key购买 nike

我尝试使用 DataInputStreamFileInputStream 读取文本文件。我知道我应该使用 FileReader,但我想尝试使用字节流。

这是代码

import java.io.*;

public class FTest_3 {

public static void main(String[] args) throws IOException{
DataInputStream stream = new DataInputStream(new FileInputStream("lol1.txt"));
String str = stream.readUTF();
System.out.println(str);
stream.close();
}
}

如果我尝试从文件 lol1.txt 中读取数据,则会出现 EOF ExceptionreadUTf(unknownsource) 错误。

但是,如果我使用 DataOutputStream 创建一个文件 lol1.txt,然后使用上面的代码读取它,它就可以正常工作。

这是我写入文件的代码

import java.io.*;

public class FTest_4 {

public static void main(String[] args) throws IOException{
DataOutputStream stream = new DataOutputStream(new FileOutputStream("lol1.txt"));
stream.writeUTF("hahah");
stream.close();
}
}

此外,我找不到任何可以回答我的查询的相关帖子。谢谢!

最佳答案

readUTFnot a general-purpose method to read Strings from text files .

它首先读取两个字节,这两个字节应该包含后面的数据字节数(字节,而不是字符)。之后是修改后的 UTF-8 编码中的字符串字节。

在你的例子中,你可能在文件开头读取了两个 ASCII 字符“ha”(0x68 0x61),当解释为整数时,这是一个相当大的数字,然后得到一个 EOF,因为没有文件中剩余足够的字节来匹配。

要读取原始字节,请使用 InputStream#read 方法之一。

要读取文本文件,请使用Reader,而不是InputStream。然后你也可以读取字符串。

关于java - 为什么使用 readUTF 读取时出现 EOF 异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37107895/

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