1 回答
TA贡献1818条经验 获得超8个赞
您可以使用下面的代码使用 java 打开视频,但这仅适用于 ubuntu 或其他 Linux。您还可以检查您的操作系统并更改命令。对于 Windows,它只是文件名的绝对路径。
public class Main
{
public static void main(String[] args)
{
Runtime runtime = Runtime.getRuntime();
try {
runtime.exec("xdg-open <path+yourfilename>");
} catch (IOException e) {
e.printStackTrace();
}
}
}
用于窗户
public class Main
{
public static void main(String[] args)
{
Runtime runtime = Runtime.getRuntime();
try {
String[] command = {"cmd.exe", "/k", "Start", "<path+yourfilename>"};
Process p = runtime.exec(command);
} catch (IOException e) {
e.printStackTrace();
}
}
}
添加回答
举报