如果我用FileReader读取它,我怎么知道我在文件中的位置?

前端之家收集整理的这篇文章主要介绍了如果我用FileReader读取它,我怎么知道我在文件中的位置?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一些像这样的代码

FileReader fr = new FileReader(file);
BufferedReader reader = new BufferedReader(fr);
for (int i=0;i<100;i++) 
{
   String line = reader.readLine(); 
   ...
}

// at this point I would like to know where I am in the file.
// let's assign that value to 'position' 
// then I would be able to continue reading the next 100 lies (this could be done later on ofcourse... )
// by simply doing this: 

FileReader fr = new FileReader(file);
fr.skip(position); 
BufferedReader reader = new BufferedReader(fr);
for (int i=0;i<100;i++) 
{
   String line = reader.readLine(); 
   ...
}

我无法弄清楚如何获得/计算’位置’的值.

两件事情:
我显然没有固定长度的文件(即:每行有不同的长度)
我需要让它适用于任何系统(linux,unix,windows),所以我不确定我是否可以假设换行的长度(无论是一个还是两个字符)

任何帮助非常感谢.

谢谢,

最佳答案
如果您可以保持文件打开,可以尝试使用mark()和reset().如果必须关闭文件并重新打开,请尝试FileInputStream.getChannel().position()和FileInputStream.skip()
原文链接:https://www.f2er.com/java/437840.html

猜你在找的Java相关文章