将原始文件保存到内部存储器中

发布于 2024-11-06 01:10:33 字数 92 浏览 2 评论 0原文

我在 raw 文件夹中有一个文本文件,现在我想将其保存在 android 平台的内部存储中的某个位置,以便它不可访问。

如果有人可以帮助我,请。提前致谢。

I have a text file in raw folder and now i want to save it somewhere in the internal storage in android platform so that it is non-accessible.

Please if someone can help me out. Thanx in advance.

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

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

发布评论

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

评论(1

贱人配狗天长地久 2024-11-13 01:10:33

像这样的东西应该可以工作

InputStream is = new FileInputStream("path_to_your_file");
FileOutputStream fos = openFileOutput("your_file", Context.MODE_PRIVATE);
// read from InputStream and write ot OutputStream

有关 InternalStorage 的更多信息

Something like this should work

InputStream is = new FileInputStream("path_to_your_file");
FileOutputStream fos = openFileOutput("your_file", Context.MODE_PRIVATE);
// read from InputStream and write ot OutputStream

More info about InternalStorage

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