如何在java中使用exec方法打开文件?

时间:2016-04-19 03:32:45

标签: java runtime.exec

C:\Users\Admin\Downloads\VID_20160226_203631957.mp4

当我在命令提示符下执行上面的行时,相应的视频将被默认媒体播放器播放。

但是当我尝试使用java Runtime类做同样的事情时,它不起作用。 我正在使用以下方法。

Runtime r= Runtime.getRuntime();
r.exec("C:\Users\Admin\Downloads\VID_20160226_203631957.mp4")

2 个答案:

答案 0 :(得分:2)

使用Desktop.open(File) 启动关联的应用程序来打开文件。类似的东西,

File f = new File("C:/Users/Admin/Downloads/VID_20160226_203631957.mp4");
try {
    Desktop.getDesktop().open(f);
} catch (IOException e) {
    e.printStackTrace();
}

您可能更喜欢构建相对于user's home directory的路径;

之类的东西
File downloads = new File(System.getProperty("user.home"), "Downloads");
File f = new File(downloads, "VID_20160226_203631957.mp4");

答案 1 :(得分:0)

试试这个。

Runtime r= Runtime.getRuntime();
r.exec("cmd /c C:\\Users\\Admin\\Downloads\\VID_20160226_203631957.mp4");