访问apk的资源

发布于 2024-08-29 12:13:37 字数 169 浏览 4 评论 0原文

我正在考虑将 .txt 文件放入 res/drawableres/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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烦人精 2024-09-05 12:13:37

.txt 文件既不是可绘制文件也不是布局。你应该把它放在 res/raw 中。您可以像这样访问它:

    Resources resources = this.getResources(); 
    InputStream is = resources.openRawResource(R.raw.yourtextfile);

上面代码中省略了 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:

    Resources resources = this.getResources(); 
    InputStream is = resources.openRawResource(R.raw.yourtextfile);

Try/catch and errorhandling omited in above code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文