让用户选择打开文件的应用程序

时间:2012-10-30 10:27:28

标签: java windows swing file-io jdesktop

我需要我的java代码才能根据默认应用程序打开文件。谢谢 How to open user system preferred editor for given file?建议采用质量方法来实现

Runtime.getRuntime().exec("RUNDLL32.EXE SHELL32.DLL,OpenAs_RunDLL "+file);

但问题是,一旦我选择要打开它的应用程序,它就不会打开文件。我不知道它的原因。

由于

编辑:

Desktop.getDesktop().open(file);

这将在默认应用程序中打开。我希望用户选择要打开它的应用程序

1 个答案:

答案 0 :(得分:5)

使用:

Desktop.getDesktop().open(file);

http://docs.oracle.com/javase/7/docs/api/java/awt/Desktop.html#open(java.io.File

编辑:

以下是使命令有效的代码:

import java.io.File;
import java.io.IOException;

public class TestExec {

    public static void main(String[] args) throws IOException, InterruptedException {
        File file = new File("d:/Clipboard1.png");
        ProcessBuilder builder = new ProcessBuilder("RUNDLL32.EXE", "SHELL32.DLL,OpenAs_RunDLL", file.getAbsolutePath());
        builder.redirectErrorStream();
        builder.redirectOutput();
        Process process = builder.start();
        process.waitFor();
    }

}