通过java以隐藏模式打开命令提示符
我想通过java打开命令提示符并执行一些任务。 但我想以隐藏模式打开该命令提示符。
command = "cmd.exe /c start doxygen " + strDoxyfilePath;
Process p=Runtime.getRuntime().exec(command);
i want to open command prompt through java and perform some task.
but i want to open that command prompt in hidden mode.
command = "cmd.exe /c start doxygen " + strDoxyfilePath;
Process p=Runtime.getRuntime().exec(command);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请尝试以下命令来最小化启动您的程序
Please try following command to start your program minimized
试试这个:
String YourFilePath="c:\....";
Runtime.getRuntime().exec("cmd.exe /c start /min "+YourFilePath);
Try This:
String YourFilePath="c:\....";
Runtime.getRuntime().exec("cmd.exe /c start /min "+YourFilePath);
我希望您正在寻找这个,这将完成您在上面的代码中想做的事情
I hope you are looking for this, this will do what you want to do in your above code