I have an onActivityResult returning from an mediastore image selection which I can get a URI for an image using the following:

  Uri selectedImage = data.getData();

Converting this to a string gives this:

  content://media/external/images/media/47

Or to a path gives:

  /external/images/media/47

However I can't seem to find a way to convert this into an absolute path, as I want to load the image into a bitmap without having to copy it somewhere. I know this can be done using the URI and content resolver but this seems to break on rebooting of the phone, I guess MediaStore doesn't keep its numbering the same between reboots.

link|improve this question

feedback

4 Answers

up vote 76 down vote accepted
public String getRealPathFromURI(Uri contentUri) {
        String[] proj = { MediaStore.Images.Media.DATA };
        Cursor cursor = managedQuery(contentUri, proj, null, null, null);
        int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
        cursor.moveToFirst();
        return cursor.getString(column_index);
    }
link|improve this answer
AWESOME! this works perfectly thanks so much, been troubling me for ages. – stealthcopter Aug 5 '10 at 16:19
keep up the good work..! – FasteKerinns Oct 7 '11 at 11:33
+1 its working.. :) [link]developer.android.com/reference/android/content/… What about getDataString() – mahe madhi Nov 3 '11 at 7:29
thanks its help me alot.... – user4232 Apr 11 at 5:51
feedback

Don't try to find a uri in the filesystem, that's slow to go look things up in the database.

You can get a bitmap from a uri by giving an input stream to the factory like you give a file to the factory:

InputStream is = getContentResolver().openInputStream(uri);
Bitmap bitmap = BitmapFactory.decodeStream(is);
is.close();
link|improve this answer
feedback

Here it is my example of getting file name, from URI like file://... and content://... . It's works for me not only with Android MediaStore but also with third part application like EzExplorer.

public static String getFileNameByUri(Uri uri)
{
    String fileName="unknown";//default fileName
    Uri filePathUri = uri;
    if (uri.getScheme().toString().compareTo("content")==0)
    {      
        Cursor cursor = ApplicationObject.context.getContentResolver().query(uri, null, null, null, null);
        if (cursor.moveToFirst())
        {
            int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);//Instead of "MediaStore.Images.Media.DATA" can be used "_data"
            filePathUri = Uri.parse(cursor.getString(column_index));
            fileName = filePathUri.getLastPathSegment().toString();
        }
    }
    else if (uri.getScheme().compareTo("file")==0)
    {
        fileName = filePathUri.getLastPathSegment().toString();
    }
    else
    {
        fileName = fileName+"_"+filePathUri.getLastPathSegment().toString();
    }
    return fileName;
}
link|improve this answer
feedback

Just a simple update on the first answer: mActivity.managedQuery() is now deprecated. I've updated the code with the new method.

private String getRealPathFromURI(Uri contentUri) {
    String[] proj = { MediaStore.Images.Media.DATA };
    CursorLoader loader = new CursorLoader(mContext, contentUri, proj, null, null, null);
    Cursor cursor = loader.loadInBackground();
    int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
    cursor.moveToFirst();
    return cursor.getString(column_index);
}

android dev source

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.