Java中文件的部分读取
我正在创建一个 Java 应用程序,其中我需要读取一个巨大文本文件的前几行并进行处理。 我是否有可能不获取整个文件,而是读取前几行并获取数据?这是使用 Java API 完成的。
I am creating a Java application in which I need to read the first few lines of a huge text file and do the processing.
Is it possible that instead of getting the entire file, I read the first few lines and fetch the data? And this is being done using Java API.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 BufferedReader。
Use BufferedReader.
是的,这是可以做到的。例如,当您使用 BufferedReader 时,您仅从文件中读取 (buffer_size)。然后您可以在阅读下一个片段之前对其进行处理...
例如,请参阅 本教程
Yes, it can be done. When you use BufferedReader, for example, you read just (buffer_size) from the file. Then you can process it before reading the next fragment...
for example, see this tutorial
如果您需要保留,还有 LineNumberReader行号跟踪
There is also LineNumberReader if you need to keep track of the line numbers