1

我尝试将我的 App1“external_files”目录(/storage/emulated/0/Android/data/com.package.app1/files)中存在的文件(PDF 类型,但这并不重要)共享给我的 App2。我正在 Android 10 模拟器(来自 Android Studio,最新)中对此进行测试,这两个应用程序都使用 Scoped Storage,并且未启用对旧版外部存储的支持。

一切似乎都是由“书”定义的,在 App1 清单中:

    <provider
        android:name="androidx.core.content.FileProvider"
        android:authorities="com.package.app1.fileprovider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/my_paths" />
    </provider>

然后 my_paths.xml 有

<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-files-path name="external_files" path="." />
</paths>

然后在 App1 中:

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setPackage("com.package.app2");
File file = new File(context.getExternalFilesDir(null), "MyFile.pdf");
Uri uri = FileProvider.getUriForFile(context, "com.package.app1.fileprovider", file);
context.grantUriPermission("com.package.app2", uri,
                        FLAG_GRANT_READ_URI_PERMISSION);
intent.setDataAndTypeAndNormalize(uri, "application/pdf");
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
activity.startActivityForResult(intent, MY_REQUEST_CODE);

App2 在其清单中有:

<activity android:name=".MainActivity" android:configChanges="orientation|screenSize|keyboardHidden"
    android:label="@string/app_name" android:theme="@style/AppTheme.NoActionBar">
    <intent-filter>
        <action android:name="android.intent.action.SEND" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:mimeType="application/pdf" />
    </intent-filter>
</activity>

在 App2:活动 onCreate():

   Uri uri = getIntent().getData(); // The content:// uri looks correct
   if (uri != null) {
        DocumentFile docFile = DocumentFile.fromSingleUri(this, uri);
        Log.d("myTag", uri.toString + ": EXISTS: ", docFile.exists(), ", can read: ", docFile.canRead());
   }

无论我做什么,输出总是:

content://com.package.app1.fileprovider/external_files/MyFile.pdf: EXISTS: true, can read: false

我在做什么错,为什么我不能得到“可以阅读:真实”?

4

2 回答 2

1

@blackapps 在第一条评论中的建议是正确的: DocumentFile 上的 docFile.canRead() 不可靠,当 docFile.isFile() 返回 false 时(docFile.isDirectory() 也返回 false,它是来自的常规文件内容文件提供者)。尽管 docFile.canRead() 返回 false,但我能够在 docFile 对象上打开 InputStream 并且可以正常读取。谢谢你,@blackapps!

于 2019-11-20T13:19:26.067 回答
0

实际上 DocumentFile 的 canRead() 是可靠的。但它检查的东西与 File.canRead() 不同

根据 DocumentsContractApi19,这是 canRead() 对 DocumentFile 执行的操作:

 public static boolean canRead(Context context, Uri self) {
        // Ignore if grant doesn't allow read
        if (context.checkCallingOrSelfUriPermission(self, Intent.FLAG_GRANT_READ_URI_PERMISSION)
                != PackageManager.PERMISSION_GRANTED) {
            return false;
        }

        // Ignore documents without MIME
        if (TextUtils.isEmpty(getRawType(context, self))) {
            return false;
        }

        return true;
    }

我的建议是:不要像使用文件那样使用 canRead()。相反,尝试使用 try/catch 打开 uri 进行读取

于 2021-07-23T03:26:49.207 回答