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

时间:2010-06-09 09:53:02

标签: android image

我知道图像的绝对路径(比如说/sdcard/cats.jpg)。这个文件的内容是否有任何方法?

实际上在我的代码中我下载了一张图片并将其保存在特定位置。为了在ImageView中设置图像,我使用路径打开文件,获取字节并创建位图,然后在ImageView中设置位图。这是一个非常缓慢的过程,相反,如果我可以获得内容uri,那么我可以非常轻松地使用方法ImageView.setImageUri(uri)

10 个答案:

答案 0 :(得分:436)

尝试:

ImageView.setImageURI(Uri.fromFile(new File("/sdcard/cats.jpg")));

或者用:

ImageView.setImageURI(Uri.parse(new File("/sdcard/cats.jpg").toString()));

答案 1 :(得分:78)

<强>更新

  

此处假设您的媒体(图像/视频)已添加到内容媒体提供商。如果没有,那么你将无法获得   内容网址就像您想要的一样。相反,会有文件Uri。

我的文件浏览器活动有同样的问题。您应该知道文件的contenturi仅支持图像,音频和视频等媒体库数据。我正在为您提供从sdcard中选择图像来获取图像内容的代码。试试这段代码吧,也许它对你有用......

public static Uri getImageContentUri(Context context, File imageFile) {
  String filePath = imageFile.getAbsolutePath();
  Cursor cursor = context.getContentResolver().query(
      MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
      new String[] { MediaStore.Images.Media._ID },
      MediaStore.Images.Media.DATA + "=? ",
      new String[] { filePath }, null);
  if (cursor != null && cursor.moveToFirst()) {
    int id = cursor.getInt(cursor.getColumnIndex(MediaStore.MediaColumns._ID));
    cursor.close();
    return Uri.withAppendedPath(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, "" + id);
  } else {
    if (imageFile.exists()) {
      ContentValues values = new ContentValues();
      values.put(MediaStore.Images.Media.DATA, filePath);
      return context.getContentResolver().insert(
          MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
    } else {
      return null;
    }
  }
}

答案 2 :(得分:15)

//此代码适用于2.2上的图像,不确定是否有其他媒体类型

   //Your file path - Example here is "/sdcard/cats.jpg"
   final String filePathThis = imagePaths.get(position).toString();

   MediaScannerConnectionClient mediaScannerClient = new
   MediaScannerConnectionClient() {
    private MediaScannerConnection msc = null;
    {
        msc = new MediaScannerConnection(getApplicationContext(), this);
        msc.connect();
    }

    public void onMediaScannerConnected(){
        msc.scanFile(filePathThis, null);
    }


    public void onScanCompleted(String path, Uri uri) {
        //This is where you get your content uri
            Log.d(TAG, uri.toString());
        msc.disconnect();
    }
   };

答案 3 :(得分:14)

对于您的目的,可接受的解决方案可能是最好的选择,但要实际回答主题中的问题:

在我的应用程序中,我必须从URI获取路径并从路径获取URI。前者:

/**
 * Gets the corresponding path to a file from the given content:// URI
 * @param selectedVideoUri The content:// URI to find the file path from
 * @param contentResolver The content resolver to use to perform the query.
 * @return the file path as a string
 */
private String getFilePathFromContentUri(Uri selectedVideoUri,
        ContentResolver contentResolver) {
    String filePath;
    String[] filePathColumn = {MediaColumns.DATA};

    Cursor cursor = contentResolver.query(selectedVideoUri, filePathColumn, null, null, null);
    cursor.moveToFirst();

    int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
    filePath = cursor.getString(columnIndex);
    cursor.close();
    return filePath;
}

后者(我为视频做的,但也可以通过将MediaStore.Audio(等)替换为MediaStore.Video来用于音频或文件或其他类型的存储内容):

/**
 * Gets the MediaStore video ID of a given file on external storage
 * @param filePath The path (on external storage) of the file to resolve the ID of
 * @param contentResolver The content resolver to use to perform the query.
 * @return the video ID as a long
 */
private long getVideoIdFromFilePath(String filePath,
        ContentResolver contentResolver) {


    long videoId;
    Log.d(TAG,"Loading file " + filePath);

            // This returns us content://media/external/videos/media (or something like that)
            // I pass in "external" because that's the MediaStore's name for the external
            // storage on my device (the other possibility is "internal")
    Uri videosUri = MediaStore.Video.Media.getContentUri("external");

    Log.d(TAG,"videosUri = " + videosUri.toString());

    String[] projection = {MediaStore.Video.VideoColumns._ID};

    // TODO This will break if we have no matching item in the MediaStore.
    Cursor cursor = contentResolver.query(videosUri, projection, MediaStore.Video.VideoColumns.DATA + " LIKE ?", new String[] { filePath }, null);
    cursor.moveToFirst();

    int columnIndex = cursor.getColumnIndex(projection[0]);
    videoId = cursor.getLong(columnIndex);

    Log.d(TAG,"Video ID is " + videoId);
    cursor.close();
    return videoId;
}

基本上,DATA的{​​{1}}列(或您要查询的任何子部分)都会存储文件路径,因此您可以使用该信息进行查找。

答案 4 :(得分:5)

您可以根据使用情况使用这两种方式

Uri uri = Uri.parse("String file location");

Uri uri = Uri.fromFile(new File("string file location"));

我尝试了两种方式,但两种方式都有效。

答案 5 :(得分:2)

在不编写任何代码的情况下获取文件ID,只需使用adb shell CLI命令:

adb shell content query --uri "content://media/external/video/media" | grep FILE_NAME | grep -Eo " _id=([0-9]+)," | grep -Eo "[0-9]+"

答案 6 :(得分:2)

从文件创建内容Uri content://的最简单且最健壮的方法是使用FileProvider。 FileProvider提供的Uri也可用于提供Uri以便与其他应用程序共享文件。要从File的绝对路径获取File Uri,您可以使用DocumentFile.fromFile(新文件(路径,名称)),它在Api 22中添加,并为以下版本返回null。

File imagePath = new File(Context.getFilesDir(), "images");
File newFile = new File(imagePath, "default_image.jpg");
Uri contentUri = getUriForFile(getContext(), "com.mydomain.fileprovider", newFile);

答案 7 :(得分:0)

你可以尝试下面的代码片段

    public Uri getUri(ContentResolver cr, String path){
    Uri mediaUri = MediaStore.Files.getContentUri(VOLUME_NAME);
    Cursor ca = cr.query(mediaUri, new String[] { MediaStore.MediaColumns._ID }, MediaStore.MediaColumns.DATA + "=?", new String[] {path}, null);
    if (ca != null && ca.moveToFirst()) {
        int id = ca.getInt(ca.getColumnIndex(MediaStore.MediaColumns._ID));
        ca.close();
        return  MediaStore.Files.getContentUri(VOLUME_NAME,id);
    }
    if(ca != null) {
        ca.close();
    }
    return null;
}

答案 8 :(得分:0)

已经晚了,但将来可能会帮助到某人。

要获取文件的内容URI,可以使用以下方法:

FileProvider.getUriForFile(Context context, String authority, File file)

它返回内容URI。

Check this out to learn how to setup a FileProvider

答案 9 :(得分:0)

最好使用验证来支持Android N之前的版本,例如:

  if (Build.VERSION.SDK_INT >=  Build.VERSION_CODES.N) {
     imageUri = Uri.parse(filepath);
  } else{
     imageUri = Uri.fromFile(new File(filepath));
  }

  if (Build.VERSION.SDK_INT >=  Build.VERSION_CODES.N) {
     ImageView.setImageURI(Uri.parse(new File("/sdcard/cats.jpg").toString()));         
  } else{
     ImageView.setImageURI(Uri.fromFile(new File("/sdcard/cats.jpg")));
  }

https://es.stackoverflow.com/questions/71443/reporte-crash-android-os-fileuriexposedexception-en-android-n