在内部存储上创建并写入文件

发布于 2024-10-27 04:27:44 字数 352 浏览 2 评论 0 原文

我想在 android 平板电脑中创建一个文件并向其中写入一些数据。 (只有几千字节)。

下面的链接有我尝试过的代码,但我没有看到在 /data 目录中创建的文件。有人说我必须root我的设备才能看到这些文件。

问题:我想使用内部存储创建并写入文件,而无需 root 设备。有可能吗?

我发布这个问题是因为我找不到

找不到我在 Android 平板电脑上创建的文件

I would like to create a file in android tablet and write some data to it. (only a few kilobytes).

The link below has the code i tried, but i dont see the file that got created in /data directory. some one said i have to root my device for seeing those files.

Question: I want to create and write to a file using the internal storage without rooting the device . Is it possible ?

I'm posting this question as i couldn't find answers for

Cant find the file i created on android tablet

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

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

发布评论

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

评论(1

南薇 2024-11-03 04:27:44

使用 openFileOutput() 创建文件:

FileOutputStream f = openFileOutput("filename", Context.MODE_PRIVATE);
//write to the file stream
f.close();

通常会在内部存储中创建一个只能由您的应用程序访问的文件。

Use openFileOutput() to create a file:

FileOutputStream f = openFileOutput("filename", Context.MODE_PRIVATE);
//write to the file stream
f.close();

That would normally create a file within internal storage that would be only accessible by your app.

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