Android:所选文件的文件名不正确(来自文件选择器)
Android: Incorrect File name for selected file(From file chooser)
我有一个屏幕,点击按钮打开文件选择器,然后我 select 一个名为 "Test.jpg" 的文件以供进一步操作。
我使用以下代码获取该文件的名称。
Uri uri = data.getData();
File file = new File(uri.getPath());
String fileName = file.getName();
这是调试器的结果
file.getName() => 167522
file.toString() => /external/images/media/167522
我想要 Test.jpg 作为我的文件名。
请让我知道我的代码有什么问题。
需要您的 uri 的路径。这是一种从 uri 获取路径的方法。
public String getPath(Context context, Uri uri) throws URISyntaxException {
if ("content".equalsIgnoreCase(uri.getScheme())) {
String[] projection = { "_data" };
Cursor cursor = null;
try {
cursor = context.getContentResolver().query(uri, projection, null, null, null);
int column_index = cursor.getColumnIndexOrThrow("_data");
if (cursor.moveToFirst()) {
return cursor.getString(column_index);
}
} catch (Exception e) {
// Eat it
}
}
else if ("file".equalsIgnoreCase(uri.getScheme())) {
return uri.getPath();
}
return null;
}
获取文件名
try{
//call the getPath uri with context and uri
//To get path from uri
String path = getPath(this, uri);
File file = new File(path);
String filename = file.getName();
Log.e(TAG, "File Name: " + filename);
}catch(Exception e){
e("Err", e.toString()+"");
}
输出
uri: content://com.android.providers.media.documents/document/image%3A12876
FileName : profile.png
尝试使用这种方法:
public String getRealPathFromURI(Context context, Uri contentUri) {
Cursor cursor = null;
try {
String[] proj = { MediaStore.Images.Media.DATA };
cursor = context.getContentResolver().query(contentUri, proj, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
} finally {
if (cursor != null) {
cursor.close();
}
}
}
这个方法在 Kotlin 中对我有用:
private fun getFilename(uri: Uri): String? {
val cursor = activity?.contentResolver?.query(uri, null, null, null, null)
var filename: String? = null
cursor?.getColumnIndex(OpenableColumns.DISPLAY_NAME)?.let { nameIndex ->
cursor.moveToFirst()
filename = cursor.getString(nameIndex)
cursor.close()
}
return filename
}
我有一个屏幕,点击按钮打开文件选择器,然后我 select 一个名为 "Test.jpg" 的文件以供进一步操作。 我使用以下代码获取该文件的名称。
Uri uri = data.getData();
File file = new File(uri.getPath());
String fileName = file.getName();
这是调试器的结果
file.getName() => 167522
file.toString() => /external/images/media/167522
我想要 Test.jpg 作为我的文件名。 请让我知道我的代码有什么问题。
需要您的 uri 的路径。这是一种从 uri 获取路径的方法。
public String getPath(Context context, Uri uri) throws URISyntaxException {
if ("content".equalsIgnoreCase(uri.getScheme())) {
String[] projection = { "_data" };
Cursor cursor = null;
try {
cursor = context.getContentResolver().query(uri, projection, null, null, null);
int column_index = cursor.getColumnIndexOrThrow("_data");
if (cursor.moveToFirst()) {
return cursor.getString(column_index);
}
} catch (Exception e) {
// Eat it
}
}
else if ("file".equalsIgnoreCase(uri.getScheme())) {
return uri.getPath();
}
return null;
}
获取文件名
try{
//call the getPath uri with context and uri
//To get path from uri
String path = getPath(this, uri);
File file = new File(path);
String filename = file.getName();
Log.e(TAG, "File Name: " + filename);
}catch(Exception e){
e("Err", e.toString()+"");
}
输出
uri: content://com.android.providers.media.documents/document/image%3A12876
FileName : profile.png
尝试使用这种方法:
public String getRealPathFromURI(Context context, Uri contentUri) {
Cursor cursor = null;
try {
String[] proj = { MediaStore.Images.Media.DATA };
cursor = context.getContentResolver().query(contentUri, proj, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
} finally {
if (cursor != null) {
cursor.close();
}
}
}
这个方法在 Kotlin 中对我有用:
private fun getFilename(uri: Uri): String? {
val cursor = activity?.contentResolver?.query(uri, null, null, null, null)
var filename: String? = null
cursor?.getColumnIndex(OpenableColumns.DISPLAY_NAME)?.let { nameIndex ->
cursor.moveToFirst()
filename = cursor.getString(nameIndex)
cursor.close()
}
return filename
}