如何逐行读取本地(res/raw)文件?
我的 res/raw 目录中有一个文本文件。我想逐行读取文件,但是 FileReader 和 BufferedReader 失败,因为 Android 的安全限制。我还能怎样做呢?
I have a text file in my res/raw directory. I want to read the file line by line, but FileReader and BufferedReader fail, because of Android's security restriction. How else can I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
getResources().openRawResource()
返回一个可用于逐行读取的InputStream
。getResources().openRawResource()
returns anInputStream
that should be usable for line-by-line reading.DataInputStream 允许您执行 readLine(以及许多其他操作);看
DataInputStream 参考。
A DataInputStream allows you to do a readLine (along with a host of other operations); see
DataInputStream Reference.