Loading

Sunday, April 24, 2011

Convert URI to real path format

In the exercises "Select Image using Android build-in Gallery" ad "Display Gallery selected image using BitmapFactory", the uri returned from build-in Gallery app is in the format of "content://media/external/images/...". To convert it to the real path format (eg. /mnt/sdcard/dropbox/Eric/....png), the following function can be used.

 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);
}


in real path format

SHARE TWEET

Thank you for reading this article Convert URI to real path format With URL http://x-tutorials.blogspot.com/2011/04/convert-uri-to-real-path-format.html. Also a time to read the other articles.

0 comments:

Write your comment for this article Convert URI to real path format above!