gpt4 book ai didi

android - 如何设置文件权限 - Android

转载 作者:行者123 更新时间:2023-11-30 04:32:07 27 4
gpt4 key购买 nike

我在 sdcard 上有一个 doc 文件。

我想以只读模式打开它。我也不希望文档查看器保存文件。

打开文件的 Intent 如下:

Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
File file = new File("/sdcard/test.doc");
file.setReadOnly();
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION );
intent.setDataAndType(Uri.fromFile(file), "application/msword");
startActivity(intent);

但是当文件在 quickOffice 中打开时,文件仍然是可编辑的。

请建议我应该如何使文件只对任何文档查看器开放以及我应该如何防止文件保存。

最佳答案

这可能是因为您的应用没有root权限。文件权限只能通过 root 访问权限更改。

关于android - 如何设置文件权限 - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7525239/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com