Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想读取一个特定行的大文本文件,最大为 60 MB java。我从过去三天开始搜索,但没有找到更好的结果,然后使用带有缓冲阅读器的循环。
while ((line = br.readLine()) != null) { }
但这需要很多时间。如何从android中的文本文件访问特定行。