我是java的新手......
尝试从java调用外部可执行文件时遇到问题...
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec("cmd /c terminal.exe");
在尝试将此调用低于错误时..
Exited with error code 1
答案 0 :(得分:0)
您确定terminal.exe
是否在Windows路径中?
例如,您可以尝试将其替换为notepad.exe
,以查看它是否有效。