我正在尝试从文件管理器中检索文件(任何类型),并将此文件编码为Base64字符串。 我发现了很多涉及IMAGES的答案,但我需要任何类型的文件。 他就是我在做的事。
我正在从这样的图库中检索文件(任何类型)
Intent intent = new Intent();
intent.setType("*/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Choose file"), GALLERY_REQUEST_CODE);
在我的结果中
Uri returnUri = intent.getData();
什么给了我'内容://com.android.providers.downloads.documents/document/1646'
然后我尝试
File file = new File( returnUri.getPath() );
到目前为止一直很好,但后来我尝试将文件编码为Base64字符串:
String str = null;
try {
str = convertFile(file);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
和convertFile方法
public String convertFile(File file)
throws IOException {
byte[] bytes = loadFile(file);
byte[] encoded = Base64.encode(bytes, Base64.DEFAULT);
String encodedString = new String(encoded);
return encodedString;
}
和loadFile方法
private static byte[] loadFile(File file) throws IOException {
InputStream is = new FileInputStream(file);
long length = file.length();
if (length > Integer.MAX_VALUE) {
Log.i("MobileReport","Anexo -> loadfile(): File is too big!");
// File is too large
}
byte[] bytes = new byte[(int)length];
int offset = 0;
int numRead = 0;
while (offset < bytes.length
&& (numRead=is.read(bytes, offset, bytes.length-offset)) >= 0) {
offset += numRead;
}
if (offset < bytes.length) {
throw new IOException("It was not possible to read the entire file "+file.getName());
}
is.close();
return bytes;
}
错误发生在'loadFile'方法的第一行
InputStream is = new FileInputStream(file);
应用程序崩溃并在我得到的日志中:
java.io.FileNotFoundException: /document/1646: open failed: ENOENT (No such file or directory)
我已经声明了READ和WRITE权限。 任何人都可以帮我解决这个错误吗? 谢谢!
答案 0 :(得分:0)
returnUri
是Uri
。它不是文件系统路径。
特别是,如果您检查它,您会发现它是content://
Uri
。要获得该内容的InputStream
,请在openInputStream()
上使用ContentResolver
。