访问apk的资源
我正在考虑将 .txt
文件放入 res/drawable
或 res/layout
中,以便在应用程序运行时将其放入 apk 中打包,然后在安装后打开并从中读取以执行一些任务。这可以做到吗?如果是,请告诉我如何访问该文件,因为我不知道它的路径。
I'm thinking about putting a .txt
file in res/drawable
or in res/layout
to have it in the apk when the application is packed, and then after install to open and read from it to perform some tasks. Can this be done? If yes please let me know how can I access the file, as I don't know it's path.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.txt 文件既不是可绘制文件也不是布局。你应该把它放在 res/raw 中。您可以像这样访问它:
上面代码中省略了 Try/catch 和错误处理。
A .txt file is neither a drawable nor a layout. You should put it in res/raw. You can get access to it like:
Try/catch and errorhandling omited in above code.