如何使用默认的关联程序打开文件


Answers:


136

您可以使用Desktop.getDesktop().open(File file)。有关其他选项,请参见以下问题:“ [Java]如何为给定文件打开用户系统优先编辑器?


1
尝试使用电影文件时,我一直收到此异常,但它与图像文件(bmp)一起使用:java.io.IOException:无法打开文件:/ D:/vidz/2006-04-02.wmv。错误消息:参数不正确。
弗雷德里克·莫林

您可以在问题中提供您的代码吗?另外,您使用的是哪个OS和Java版本?
Zach Scrivena 09年

我不明白的是它可以处理图像...无论如何我正在使用Java 1.6.0.06,这是代码:File file = new File(MoviePlay.getInstance()。getBasePath(),movieFile.getPath() ); 尝试{Desktop.getDesktop()。open(file); } catch(ex){...}
弗雷德里克·莫林

5
我知道已经很长时间了,但是...问题出在我的机器上。Windows XP中的默认程序关联不正确,我在其他程序中遇到了问题。从那时起,我尝试在其他机器上使用此方法,效果很好!接受了!
弗雷德里克·莫林

7
加上这个老答案;.edit()如果打开目的是为了编辑,也可以使用。某些系统具有用于查看和编辑的不同默认应用程序。.open()将打开查看器。
2014年

0

SwingHacks提供了针对Java较早版本的解决方案。

我认为他们使用Runtime对象在Windows上执行“开始”命令,而在Mac上也有类似的命令。


-8

干得好:

File myFile = new File("your any type of file url");
FileOpen.openFile(mContext, myFile);

在包中创建另一个类:

// code to open default application present in the handset


public class FileOpen {

    public static void openFile(Context context, File url) throws IOException {
        // Create URI
        File file=url;
        Uri uri = Uri.fromFile(file);

        Intent intent = new Intent(Intent.ACTION_VIEW);
        // Check what kind of file you are trying to open, by comparing the url with extensions.
        // When the if condition is matched, plugin sets the correct intent (mime) type, 
        // so Android knew what application to use to open the file
        if (url.toString().contains(".doc") || url.toString().contains(".docx")) {
            // Word document
            intent.setDataAndType(uri, "application/msword");
        } else if(url.toString().contains(".pdf")) {
            // PDF file
            intent.setDataAndType(uri, "application/pdf");
        } else if(url.toString().contains(".ppt") || url.toString().contains(".pptx")) {
            // Powerpoint file
            intent.setDataAndType(uri, "application/vnd.ms-powerpoint");
        } else if(url.toString().contains(".xls") || url.toString().contains(".xlsx")) {
            // Excel file
            intent.setDataAndType(uri, "application/vnd.ms-excel");
        } else if(url.toString().contains(".zip") || url.toString().contains(".rar")) {
            // WAV audio file
            intent.setDataAndType(uri, "application/x-wav");
        } else if(url.toString().contains(".rtf")) {
            // RTF file
            intent.setDataAndType(uri, "application/rtf");
        } else if(url.toString().contains(".wav") || url.toString().contains(".mp3")) {
            // WAV audio file
            intent.setDataAndType(uri, "audio/x-wav");
        } else if(url.toString().contains(".gif")) {
            // GIF file
            intent.setDataAndType(uri, "image/gif");
        } else if(url.toString().contains(".jpg") || url.toString().contains(".jpeg") || url.toString().contains(".png")) {
            // JPG file
            intent.setDataAndType(uri, "image/jpeg");
        } else if(url.toString().contains(".txt")) {
            // Text file
            intent.setDataAndType(uri, "text/plain");
        } else if(url.toString().contains(".3gp") || url.toString().contains(".mpg") || url.toString().contains(".mpeg") || url.toString().contains(".mpe") || url.toString().contains(".mp4") || url.toString().contains(".avi")) {
            // Video files
            intent.setDataAndType(uri, "video/*");
        } else {
            //if you want you can also define the intent type for any other file

            //additionally use else clause below, to manage other unknown extensions
            //in this case, Android will show all applications installed on the device
            //so you can choose which application to use
            intent.setDataAndType(uri, "*/*");
        }

        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
        context.startActivity(intent);
    }
}

或者您可以更改这种if条件
Vaibhav Joshi

if(url.getPath()。endsWith(“。jpg”)|| url.getPath()。endsWith(“。jpeg”)|| url.getPath()。endsWith(“。png”)){intent.setDataAndType (uri,“图片/ *”);}
Vaibhav Joshi

1
这仅适用于Android。并非所有平台都有解决方案。
andred

1
作为一名Android开发人员,我认为这对至少Android开发人员会有所帮助
Vaibhav Joshi
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.