如何保存回资产文件夹中的文件
我知道我可以像这样打开资产文件夹中的文件。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知你不能因为
/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?