Java中文件的部分读取

发布于 2024-11-23 15:40:38 字数 96 浏览 1 评论 0原文

我正在创建一个 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 技术交流群。

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

发布评论

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

评论(3

尘曦 2024-11-30 15:40:38

是的,这是可以做到的。例如,当您使用 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

×眷恋的温暖 2024-11-30 15:40:38

如果您需要保留,还有 LineNumberReader行号跟踪

There is also LineNumberReader if you need to keep track of the line numbers

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