小编ryo*_*osu的帖子

如何从Android Oreo(8.1)或更高版本中的URI获取文件路径

预期的行为

当我选择存储在"下载"中的文件时,它应该能够检索其文件名和路径

实际行为

当我选择存储在"下载"中的文件时,它返回null.

重现问题的步骤

  1. 调用pick文件方法时,它会在Android中显示文件夹
  2. 转到下载,选择一个文件
  3. 它从URI获取实际路径时返回null

这是我实现的代码

public static String getPath(final Context context, final Uri uri) {
   String id = DocumentsContract.getDocumentId(uri);
   if (!TextUtils.isEmpty(id)) {
      if (id.startsWith("raw:")) {
          return id.replaceFirst("raw:", "");
      }
      try {
         final boolean isOreo = Build.VERSION.SDK_INT >= Build.VERSION_CODES.O;
         String stringContentURI;
         Uri contentUri;
         if(isOreo){ 
            stringContentURI = "content://downloads/my_downloads";
         }else{
            stringContentURI = "content://downloads/public_downloads";
         }
         contentUri = ContentUris.withAppendedId(
                    Uri.parse(stringContentURI), Long.valueOf(id));
         return getDataColumn(context, contentUri, null, null);
      } catch (NumberFormatException e) {
         return null;
      }
   }
}

public static String getDataColumn(Context context, …
Run Code Online (Sandbox Code Playgroud)

android uri android-contentresolver android-fileprovider android-8.1-oreo

5
推荐指数
1
解决办法
4751
查看次数