允许用户可以在Android上导出数据的建议方法是什么?
我正在创建一个应用程序,我需要添加可能导出该应用中存储的数据的可能性。
有什么最好的做法值得遵循吗?
目前,我在context.cachedir
中创建一个文件,并通知download manager
关于它。
该文件最终无法打开,但是我想知道这类操作是否有最佳做法。
I am creating an app and I need to add the possibility to export the data stored in the app.
Is there any best practice to follow?
At the moment I create a file in Context.cacheDir
and notify DownloadManager
about it.
The file cannot be opened in the end, but I am wondering if there is a best practice to follow for this kind of operations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就我个人而言,我会使用
ACTION_CREATE_DOCUMENT
/ActivityResultContracts.CreateDocument
进行单文件导出。这将使用户决定应将用户数据导出到用户设备上(或用户的云存储中)的何处。如果导出涉及多个文件,请使用
ACTION_OPEN_DOCUMENT_TREE
/ActivityResultContracts.OpenDocumentTree
并创建一个子树来放置该内容。Personally, I would use
ACTION_CREATE_DOCUMENT
/ActivityResultContracts.CreateDocument
for single-file exports. This will let the user decide where on the user's device (or in the user's cloud storage) you should export the user's data.If your export involves multiple files, use
ACTION_OPEN_DOCUMENT_TREE
/ActivityResultContracts.OpenDocumentTree
and create a sub-tree in which to place that content.