java 中计算文件长度:FileReader 与 File.length

发布于 2024-12-03 00:01:28 字数 379 浏览 0 评论 0原文

为什么下面代码中的 fr_count 和 len 会不同?

FileReader fr = new FileReader(filename);
int c;
long fr_count = 0;
while ( -1 != (c = fr.read()) ) 
    fr_count++;
long len = new File(filename).length();

我在两个文件上使用了上面的代码。结果如下:

test.txt
 FileReader:  263742
 File.length: 265963
output.enc
 FileReader:  146360
 File.length: 212998

Why would fr_count and len be different in the code below?

FileReader fr = new FileReader(filename);
int c;
long fr_count = 0;
while ( -1 != (c = fr.read()) ) 
    fr_count++;
long len = new File(filename).length();

I've used the code above on two files. Here are the results:

test.txt
 FileReader:  263742
 File.length: 265963
output.enc
 FileReader:  146360
 File.length: 212998

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

迷路的信 2024-12-10 00:01:28

fr_count 是您从文件中读取的字符数。 len 是文件中的字节数。它们是两个非常不同的东西。例如,某些字符以多个字节表示,某些编码使用字节顺序标记。这两者都会造成文件中字符数和字节数之间的差异。

fr_count is the number of characters you read from the file. len is the number of bytes in the file. They're two very different things. E.g. some characters are represented in multiple bytes, and some encodings use a byte order mark. Both of these will make for differences between the number of characters and the number of bytes in a file.

隔岸观火 2024-12-10 00:01:28

File.Length 返回文件中的字节 数。计算 FileReader.read() 可以告诉您文件中有多少个字符。

File.Length is returning the number of Bytes in the file. Counting FileReader.read() is telling you how many characters are in the file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文