我是(一个初学者 android)试图获取用户从图库中选择的图像的真实路径(例如:image_name.jpg 等)。
这是代码片段:
if (requestCode == SELECT_FILE) {
Uri selectedImage = data.getData();
Bitmap bitmapImage;
try {
bitmapImage =decodeBitmap(selectedImage );
photoImage = (ImageView) findViewById(R.id.photoImage);
photoImage.setImageBitmap(bitmapImage);
photoName = (TextView) findViewById(R.id.designPhoto);
File thePath = new File(getRealPathFromURI(selectedImage));
photoName.setText(getRealPathFromURI(selectedImage));
} catch (Exception e) {
e.printStackTrace();
}
}
private String getRealPathFromURI(Uri contentURI) {
String thePath = "no-path-found";
String[] filePathColumn = {MediaStore.Images.Media.DATA};
Cursor cursor = getContentResolver().query(contentURI, filePathColumn, null, null, null);
if(cursor.moveToFirst()){
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
thePath = cursor.getString(columnIndex);
}
cursor.close();
return thePath;
}
但我在photoName
textView 中没有得到任何东西也尝试了很多代码和指南,但没有成功。
但是当我尝试使用它时
photoName.setText(selectedImage.getPath());
我正进入(状态
/document/image:n (where n=any numbers) ex:/document/image:147
但我想要一个正确的文件名或路径,例如:image_name.jpg
或/path/image_name.png
从过去 3 小时开始尝试,如果有人可以帮助我,那就太好了。谦虚提前谢谢。