gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 03:42:22 25 4
gpt4 key购买 nike

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

当我在命令提示符中执行上述行时,相应的视频将使用默认媒体播放器播放。

但是当我尝试使用 java Runtime 类执行相同操作时,它不起作用。我正在使用以下方法。

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

最佳答案

使用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");

关于java - 如何使用java中的exec方法打开文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36708057/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com