概述
我想从uri读取一个fileInputStream,但它返回的文件未找到异常
到目前为止,这是我的代码:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
try {
startActivityForResult(Intent.createChooser(intent, "Select a File to Upload"), FILE_SELECT_CODE);
} catch (android.content.ActivityNotFoundException ex) {
Toast.makeText(getContext(), "Please install a File Manager.", Toast.LENGTH_SHORT).show();
}
public void onActivityResult(int requestCode, int resultCode, Intent data) {
switch (requestCode) {
case FILE_SELECT_CODE:
if (resultCode == RESULT_OK) {
// Get the Uri of the selected file
Uri fileUri = data.getData();
long size = Helper.GetFileSize(getActivity(),fileUri);
File F = new File(fileUri.getPath());
Log.d("File", "File Uri: " + fileUri.toString());
FileInputStream fis;
try {
fis = new FileInputStream(new File(F.getPath()));
}
catch (Exception ex) {
ex.printStackTrace();
}
}
break;
}
super.onActivityResult(requestCode, resultCode, data);
}
最后
以上就是虚拟银耳汤为你收集整理的android uri找不到,尝试从android中的uri读取时找不到文件异常的全部内容,希望文章能够帮你解决android uri找不到,尝试从android中的uri读取时找不到文件异常所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复