我正在尝试获取存储在Android文件系统中的文件的真实路径(我正在使用Android 8.1在Emulator上进行测试)

这是我的代码:

final String id = DocumentsContract.getDocumentId(uri);
final Uri contentUri = ContentUris.withAppendedId(Uri.parse("content://downloads/public_downloads"), Long.valueOf(id));
return getDataColumn(context, contentUri, null, null);

对于早期版本的Android 8.0,变量id包含一个long值,因此下一行可以按预期工作。

Android 8上,变量id包含一个类似于raw:/storage/emulated/0/Download/my_file.pdf的路径,因此强制转换Long.valueOf(id))会抛出一个'java.lang.NumberFormatException' Exception.
有任何想法吗?谢谢。

最佳答案

通过执行以下操作解决了相同的问题。

final String id = DocumentsContract.getDocumentId(uri);
if (!TextUtils.isEmpty(id)) {
            if (id.startsWith("raw:")) {
                return id.replaceFirst("raw:", "");
            }
            try {
                final Uri contentUri = ContentUris.withAppendedId(
                        Uri.parse("content://downloads/public_downloads"), Long.valueOf(id));
                return getDataColumn(context, contentUri, null, null);
            } catch (NumberFormatException e) {
                 return null;
            }
      }

在评论https://github.com/Yalantis/uCrop/issues/318中找到了解决方案

10-05 17:40