我正在尝试使用intent action打开文件,但我无法使用pdf和图像文件
对于图片所有应用程序崩溃(包括图库应用)
对于doc / docx 我正在使用Office套件但是从包中提供运行时异常(java.lang.RuntimeException)。请参阅以下代码:
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(Intent.ACTION_VIEW);
if (extension.equalsIgnoreCase("jpg")
| extension.equalsIgnoreCase("jpeg")
| extension.equalsIgnoreCase("png")
| extension.equalsIgnoreCase("bitmap")) {
intent.setDataAndType(Uri.parse(fileName), "image/*");
} else if (extension.equalsIgnoreCase("xml")
| extension.equalsIgnoreCase("txt")
| extension.equalsIgnoreCase("csv")) {
intent.setDataAndType(Uri.parse(fileName), "text/*");
} else if (extension.equalsIgnoreCase("mp4")
| extension.equalsIgnoreCase("3gp")) {
intent.setDataAndType(Uri.parse(fileName), "video/*");
} else if (extension.equalsIgnoreCase("pdf")) {
intent.setDataAndType(Uri.parse(fileName), "application/pdf");
System.out.println("Pdf file to open "+fileName);
} else if (extension.equalsIgnoreCase("doc")
| extension.equalsIgnoreCase("docx")) {
intent.setDataAndType(Uri.parse(fileName), "application/word");
}
context.startActivity(intent);
但是如果我试图通过文件浏览器打开这些文件,两个文件都正确打开。
答案 0 :(得分:1)
试试这个:
Intent intent = new Intent(Intent.ACTION_VIEW);
//intent.setAction(Intent.ACTION_VIEW);
if (extension.equalsIgnoreCase("jpg")
| extension.equalsIgnoreCase("jpeg")
| extension.equalsIgnoreCase("png")
| extension.equalsIgnoreCase("bitmap")) {
intent.setDataAndType(Uri.parse("file://"+fileName), "image/*");
} else if (extension.equalsIgnoreCase("xml")
| extension.equalsIgnoreCase("txt")
| extension.equalsIgnoreCase("csv")) {
intent.setDataAndType(Uri.parse("file://"+fileName), "text/*");
} else if (extension.equalsIgnoreCase("mp4")
| extension.equalsIgnoreCase("3gp")) {
intent.setDataAndType(Uri.parse("file://"+fileName), "video/*");
}else if(extension.equalsIgnoreCase("pdf")){
intent.setDataAndType(Uri.parse("file://"+fileName), "application/pdf");
}else if( extension.equalsIgnoreCase("doc")
| extension.equalsIgnoreCase("docx")){
intent.setDataAndType(Uri.parse("file://"+fileName), "text/*");
}
// else
// if(extension.equalsIgnoreCase("mp3")|extension.equalsIgnoreCase("amr")|extension.equalsIgnoreCase("wav")){
// intent.setDataAndType(Uri.parse(fileName), "audio/mp3");
// }
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
context.startActivity(intent);
答案 1 :(得分:0)
我认为它的文件uri类没有返回文件的问题 我发现了错误
是Uri.parse(fileName)
我现在使用 Uri.fromFile(fileName)现在正在使用它。