windows - open command prompt in hidden mode through java -
i want open command prompt through java , perform task. want open command prompt in hidden mode.
command = "cmd.exe /c start doxygen " + strdoxyfilepath; process p=runtime.getruntime().exec(command);
please try following command start program minimized
command = "cmd.exe /c start /min doxygen " + strdoxyfilepath; process p=runtime.getruntime().exec(command);
Comments
Post a Comment