应用程序被操作系统强制关闭后,Android应用程序缓存是否被清除?

发布于 2024-12-27 05:50:19 字数 240 浏览 0 评论 0原文

我正在构建一个 Android 应用程序,我需要在 SD 卡上本地保存一些文件。我想问的问题是,Android 操作系统是否会

mnt/sdcard/Android/data/app_name/cache/*

在由于内存不足(发送了 sigkill )而被操作系统关闭应用程序后清除应用程序缓存?

在什么条件或何时清除缓存。如果应用程序需要安全地保存某些文件,应该将它们存储在哪里?

im building an android app and i need to save some files locally on the SD card. The question i want to ask is that does the android OS clear the app cache

mnt/sdcard/Android/data/app_name/cache/*

get cleared after the app is closed by the os due to lack of memory ( sigkill sent) ?

In what conditions or when is the cache cleared. If the app needs to save some file safely where should it store them?

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

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

发布评论

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

评论(2

﹏半生如梦愿梦如真 2025-01-03 05:50:19

由于内存不足(发送了 sigkill),应用程序被操作系统关闭后会被清除吗?

在这种情况下不应将其清除。

在什么条件或何时清除缓存。

当然是当用户选择清除它或卸载应用程序时。由于存储条件不足,外部缓存目录不会自动清除。


如果应用需要安全地保存某些文件,应该将它们存储在哪里?

这取决于你对“安全”的定义。

get cleared after the app is closed by the os due to lack of memory ( sigkill sent) ?

It should not be cleared in that case.

In what conditions or when is the cache cleared.

Definitely when the user elects to clear it, or when the app is uninstalled. The external cache directory is not automatically cleared due to low storage conditions.


If the app needs to save some file safely where should it store them?

That depends on your definition of "safely".

两人的回忆 2025-01-03 05:50:19
  • FC 不会清除您的缓存。 FC 意味着您的应用程序的进程被终止。 不会影响缓存。
  • 因此,当您在“设置”中的“管理应用程序”下手动选择清除数据和清除缓存时,
  • 为了安全存储,请使用外部存储。外部存储通常比内部存储大得多。 (这里的安全意味着,与内部存储相比,避免频繁耗尽空间)
  • FC doesn't clear your cache. FC means that your app's process is killed. So it doesn't affect the cache
  • your app's cache is cleared when you manually select clear data and clear cache under Managing Applications in Settings
  • For a safe storage, use your external storage. External storage is usually much bigger than the internal storage. (Here safe means, avoid frequently running out of space as compared to internal storage)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文