Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to get image from gallery.

Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select picture"), resultCode );

After I returned from this activity I have a data, which contains Uri. It looks like:

content://media/external/images/1

How can I convert this path to real one (just like '/sdcard/image.png') ?

Thanks

share|improve this question

2 Answers

up vote 3 down vote accepted

Is it really necessary for you to get a physical path?
For example, ImageView.setImageUri() and ContentResolver.openInputStream() allow you to access the contents of a file without knowing its real path.

share|improve this answer
Its exactly what I've looked for, but couldn't find. Thanks. – davs May 7 '10 at 19:04
1  
if androidsnippets.info/snippets/130 doesn't work, try androidsnippets.org/snippets/130 – davs Sep 18 '10 at 13:30
@davs thanks for the correction on the link – Tolga E Nov 29 '11 at 18:45

This is what I do:

Uri selectedImageURI = data.getData();
imageFile = new File(getRealPathFromURI(selectedImageURI));

and:

private String getRealPathFromURI(Uri contentURI) {
    Cursor cursor = getContentResolver()
               .query(contentURI, null, null, null, null); 
    cursor.moveToFirst(); 
    int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA); 
    return cursor.getString(idx); 
}

NOTE: managedQuery() method is deprecated, so I am not using it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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