android:如何通过BufferedReader访问res/raw目录中的资源
我在 res/raw 目录中保存了一些资源,然后我想用我的自定义加载器来读取这些资源。
我该怎么做?
理想情况下我会在它们上安装 BufferedReader 。
谢谢!
i save some ressources in the res/raw directory which i then would like to read with my custom loader.
how can i do this?
ideally i would get a BufferedReader on them.
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是常见的方式:
您也可以将其放在资产文件夹中并像这样访问它:
This is the common way :
You can also put it in the assets folder and access it like that :
getResources().openRawResource()
获取InputStream
。InputStreamReader
获取读取器。InputStreamReader
具有内置缓冲。getResources().openRawResource()
to get anInputStream
.InputStreamReader
to get a reader.InputStreamReader
has built-in buffering.好吧,我刚刚想明白了:
ok, i just figured it out: