对非常大的文本文件进行分页

发布于 2024-08-14 11:09:59 字数 137 浏览 9 评论 0原文

我需要实现一个能够读取任意大文本文件的分页小部件。小部件将由具有广泛硬件的不同应用程序使用(低端内存较低的移动设备),因此需要相当节省内存和高效。每个用户的寻呼量也将任意不同。有没有免费的示例代码在某处实现了这个?如果可能的话,我真的正在寻找一个java片段。

I need to implement a paging widget that would be able to read an arbitrarily large text file. widget will be used by different apps with a wide range of hardware (mobile with low ram on low end) so need to be fairly memory stingy and efficient. the amount to be paged is also going to be arbitrarily different for each user. is there any free sample code that has implemented this somewhere? i'm looking for a java snippet really if possible.

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

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

发布评论

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

评论(1

鹤舞 2024-08-21 11:09:59

java.io.RandomAccessFile 在这里应该很有帮助,因为它允许您开始读取文件中的任何位置。这使您能够仅将当前页面保留在内存中。

java.io.RandomAccessFile should be helpful here, as it allows you start reading anywhere in the file. This enables you to only keep the current page in memory.

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