java.io.FileNotFoundException: /sdcard/...: 打开失败:EISDIR(是一个目录)
java.io.FileNotFoundException: /sdcard/...: open failed: EISDIR (Is a directory)
你好我正在尝试将文件上传到我的应用程序,在某些设备上从 sdcard 上传它给了我一个 error:java.io.FileNotFoundException:(sdcard 中的路径):打开失败: EISDIR(是一个目录)。有人知道为什么吗??我的代码:
正在浏览文件并打开文件管理器:
private void doBrowseFile() {
Intent chooseFileIntent = new Intent(Intent.ACTION_GET_CONTENT);
chooseFileIntent.setType("application/pdf");
// Only return URIs that can be opened with ContentResolver
chooseFileIntent.addCategory(Intent.CATEGORY_OPENABLE);
chooseFileIntent = Intent.createChooser(chooseFileIntent, "Choose a file");
startActivityForResult(chooseFileIntent, UNIQUE_REQUEST_CODE);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == UNIQUE_REQUEST_CODE) {
if (resultCode == RESULT_OK) {
if (data != null) {
Uri fileUri = data.getData();
Log.i(LOG_TAG, "Uri: " + fileUri);
String filePath = null;
try {
filePath = FileUtils.getPath(this, fileUri);
} catch (Exception e) {
Log.e(LOG_TAG, "Error: " + e);
Toast.makeText(this, "Error: " + e, Toast.LENGTH_SHORT).show();
}
getBase64FromPath(filePath);
}
}
}
super.onActivityResult(requestCode, resultCode, data);
}
来自文件路径的编码文件:
@RequiresApi(api = Build.VERSION_CODES.O)
public void getBase64FromPath(String path) {
String base64 = "";
try {
File file = new File(path);
byte[] buffer = new byte[(int) file.length() + 100];
file.getParentFile().mkdirs();
FileInputStream fileInputStream = new FileInputStream(file); //THIS LINE GIVES ME ERROR
@SuppressWarnings("resource")
int length = fileInputStream.read(buffer);
base64 = Base64.encodeToString(buffer, 0, length,
Base64.DEFAULT);
uploadFile(base64);
} catch (IOException e) {
Toast.makeText(this, "error:" + e.getMessage() , Toast.LENGTH_SHORT).show();
}
}
如果有人知道为什么请告诉。它仅在某些设备上出现此错误。在其他人身上它工作得很好。谢谢。
摆脱 FileUtils.getPath()
,因为它永远无法可靠地工作。
您可以通过致电 getContentResolver().openInputStream(fileUri)
获得您的内容的 InputStream
。然后,您可以使用 InputStream
而不是 FileInputStream
来阅读您的内容。
请注意,您的应用程序会因 OutOfMemoryError
大 PDF 而崩溃。我强烈建议您找到一些方法来上传您的内容,而无需一次将其全部读入内存。例如,您可能会考虑不将其转换为 base-64。
你好我正在尝试将文件上传到我的应用程序,在某些设备上从 sdcard 上传它给了我一个 error:java.io.FileNotFoundException:(sdcard 中的路径):打开失败: EISDIR(是一个目录)。有人知道为什么吗??我的代码:
正在浏览文件并打开文件管理器:
private void doBrowseFile() {
Intent chooseFileIntent = new Intent(Intent.ACTION_GET_CONTENT);
chooseFileIntent.setType("application/pdf");
// Only return URIs that can be opened with ContentResolver
chooseFileIntent.addCategory(Intent.CATEGORY_OPENABLE);
chooseFileIntent = Intent.createChooser(chooseFileIntent, "Choose a file");
startActivityForResult(chooseFileIntent, UNIQUE_REQUEST_CODE);
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == UNIQUE_REQUEST_CODE) {
if (resultCode == RESULT_OK) {
if (data != null) {
Uri fileUri = data.getData();
Log.i(LOG_TAG, "Uri: " + fileUri);
String filePath = null;
try {
filePath = FileUtils.getPath(this, fileUri);
} catch (Exception e) {
Log.e(LOG_TAG, "Error: " + e);
Toast.makeText(this, "Error: " + e, Toast.LENGTH_SHORT).show();
}
getBase64FromPath(filePath);
}
}
}
super.onActivityResult(requestCode, resultCode, data);
}
来自文件路径的编码文件:
@RequiresApi(api = Build.VERSION_CODES.O)
public void getBase64FromPath(String path) {
String base64 = "";
try {
File file = new File(path);
byte[] buffer = new byte[(int) file.length() + 100];
file.getParentFile().mkdirs();
FileInputStream fileInputStream = new FileInputStream(file); //THIS LINE GIVES ME ERROR
@SuppressWarnings("resource")
int length = fileInputStream.read(buffer);
base64 = Base64.encodeToString(buffer, 0, length,
Base64.DEFAULT);
uploadFile(base64);
} catch (IOException e) {
Toast.makeText(this, "error:" + e.getMessage() , Toast.LENGTH_SHORT).show();
}
}
如果有人知道为什么请告诉。它仅在某些设备上出现此错误。在其他人身上它工作得很好。谢谢。
摆脱 FileUtils.getPath()
,因为它永远无法可靠地工作。
您可以通过致电 getContentResolver().openInputStream(fileUri)
获得您的内容的 InputStream
。然后,您可以使用 InputStream
而不是 FileInputStream
来阅读您的内容。
请注意,您的应用程序会因 OutOfMemoryError
大 PDF 而崩溃。我强烈建议您找到一些方法来上传您的内容,而无需一次将其全部读入内存。例如,您可能会考虑不将其转换为 base-64。