如何保存回资产文件夹中的文件

发布于 2024-12-19 15:34:33 字数 176 浏览 0 评论 0原文

我知道我可以像这样打开资产文件夹中的文件。

InputStream is = ((Activity) mView).getAssets().open("some.txt");

但是我应该怎么做才能保存回同一个文件呢?我的意思是如何获得同一文件的OutputStream?

I understand I can open a file in assets folder like this.

InputStream is = ((Activity) mView).getAssets().open("some.txt");

But what should I do to save back to the same file? I mean how do I get OutputStream of the same file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

和影子一齐双人舞 2024-12-26 15:34:33

据我所知你不能因为/asset目录不可写,所以你不能对/asset目录中的文件进行任何更改,这是因为 Android .apk 文件是只读的。

有关详细信息,请参阅此讨论写入文件资源文件夹 还有这个问题 如何将文件写入资产文件夹或原始文件夹在安卓中?

As per my knowledge you can't because /asset directory is not writeable, So you can't make any changes on file which are in /asset directory, Its because Android .apk file is only readable.

For more info look at this discussion Writing to file Assets folder And this SO question How to write files to assets folder or raw folder in android?

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