如何从android pie中的内容uri获取文件路径

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从android pie中的内容uri获取文件路径相关的知识,希望对你有一定的参考价值。

我正在尝试使用retrofit 2.0上传图像。在onActivityResult获得uri后,我试图从uri获得路径,这是给出null。相同的代码在前棒棒糖设备中完美运行。

String[] filePathColumn = { MediaStore.Image.Media.DATA };
Cursor cursor = context.getContentResolver().query(inputUri,
                filePathColumn, null, null, null);
if (cursor != null) {
   cursor.moveToFirst();
   int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
   String filePath = cursor.getString(columnIndex);
   cursor.close();
// filePath is always null
   if (filePath != null && !filePath.isEmpty()) {
       file = new File(filePath);
   }
}
答案

这是完整的工作代码,用于从内容提供商那里获取所有apis的最后一张照片:

      public ArrayList<String> getNewPicturesUri(JobParameters parameters) {
    ArrayList<String> newPictures = new ArrayList<>();

    if (parameters.getTriggeredContentAuthorities() != null) {
        if (parameters.getTriggeredContentUris() != null) {
            ArrayList<String> ids = new ArrayList<>();
            for (Uri uri : parameters.getTriggeredContentUris()) {
                List<String> path = uri.getPathSegments();
                if (path != null && path.size() ==
                        Media.EXTERNAL_CONTENT_URI.getPathSegments().size() + 1) {
                    ids.add(path.get(path.size() - 1));
                }
            }

            if (ids.size() > 0) {
                StringBuilder selection = new StringBuilder();
                for (int i = 0; i < ids.size(); i++) {
                    if (selection.length() > 0) {
                        selection.append(" OR ");
                    }
                    selection.append(MediaStore.Images.ImageColumns._ID);
                    selection.append("='");
                    selection.append(ids.get(i));
                    selection.append("'");
                }

                Cursor cursor = null;
                try {
                    String[] projection = new String[]{
                            MediaStore.Images.ImageColumns._ID,
                            MediaStore.Images.ImageColumns.DATA};

                    cursor = getContentResolver().query(
                            Media.EXTERNAL_CONTENT_URI,
                            projection, selection.toString(), null, null);

                    if (cursor != null) {
                        while (cursor.moveToNext()) {
                            newPictures.add(cursor.getString(PROJECTION_DATA));
                        }
                    }
                } catch (SecurityException exception) {
                    FirebaseCrash.report(exception);
                } finally {
                    if (cursor != null) {
                        cursor.close();
                    }
                }
            }
        }
    }
    return newPictures;
}

以上是关于如何从android pie中的内容uri获取文件路径的主要内容,如果未能解决你的问题,请参考以下文章

Android - 如何从原始文件中获取 Uri?

我可以从android中的uri获取图像文件的宽度和高度吗?

Android:如何获取匹配缩略图 URI 的文件路径?

如何从 Uri xamarin android 获取实际路径

从内容 URI 中获取搜索图像的绝对文件路径

如何在 Android Pie 中获取 pdf 文件的实际文件路径? [复制]