对非常大的文本文件进行分页
我需要实现一个能够读取任意大文本文件的分页小部件。小部件将由具有广泛硬件的不同应用程序使用(低端内存较低的移动设备),因此需要相当节省内存和高效。每个用户的寻呼量也将任意不同。有没有免费的示例代码在某处实现了这个?如果可能的话,我真的正在寻找一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.