我想通过java打开命令提示符并执行一些任务。 但我想以隐藏模式打开该命令提示符。
command = "cmd.exe /c start doxygen " + strDoxyfilePath;
Process p=Runtime.getRuntime().exec(command);
答案 0 :(得分:2)
请尝试以下命令启动程序最小化
command = "cmd.exe /c start /min doxygen " + strDoxyfilePath;
Process p=Runtime.getRuntime().exec(command);
答案 1 :(得分:0)
我希望你正在寻找这个,这将在你上面的代码中做你想做的事情
String strDoxyfilePath = "any path";
String[] Command ={"doxygen",strDoxyfilePath};
try {
Process process = new ProcessBuilder(Command).start();
} catch (IOException e) {
e.printStackTrace();
}
答案 2 :(得分:0)
试试这个:
字符串YourFilePath =" c:\ ....&#34 ;;
Runtime.getRuntime()。exec(" cmd.exe / c start / min" + YourFilePath);