android – 从Intent.ACTION_GET_CONTENT到文件的URI

前端之家收集整理的这篇文章主要介绍了android – 从Intent.ACTION_GET_CONTENT到文件的URI前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
>使用Intent.ACTION_GET_CONTENT启动照片选择器
>检索所选项目的URI
>检索URI的PATH,以便我可以将其发布到我的网络服务器

用于启动浏览的代码

@H_403_6@Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*"); startActivityForResult(intent,BROWSE_IMAGE_REQUEST_CODE);

用于检索所选图像的代码

@H_403_6@if (RESULT_OK == resultCode && BROWSE_IMAGE_REQUEST_CODE == requestCode) { Uri uri = data.getData();

要发送到网络服务器的代码

@H_403_6@File file = new File(uri.getPath()); new FileSystemResourceFile(file);

我目前能够从URI中检索PATH没有prob / external / images / media / 24但是由于一些奇怪的原因,文件总是为空,请帮忙吗?

解决方法

我已经完成了这个方法,将Uri从Intent.ACTION_GET_CONTENT转换为实际路径: @H_403_6@public static String getRealPathFromUri(Activity activity,Uri contentUri) { String[] proj = { MediaStore.Images.Media.DATA }; Cursor cursor = activity.managedQuery(contentUri,proj,null,null); int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA); cursor.moveToFirst(); return cursor.getString(column_index); }

然后转换为文件

@H_403_6@Uri filePathFromActivity = (Uri) extras.get(Intent.EXTRA_STREAM); filePathFromActivity = Uri.parse(FileUtil.getRealPathFromUri( (Activity) IntentActivity.this,filePathFromActivity)); File imageFile = new File(filePathFromActivity.getPath());

猜你在找的Android相关文章