通过java以隐藏模式打开命令提示符

发布于 2024-11-25 09:23:07 字数 179 浏览 0 评论 0原文

我想通过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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

☆獨立☆ 2024-12-02 09:23:07

请尝试以下命令来最小化启动您的程序

command = "cmd.exe /c start /min doxygen " + strDoxyfilePath; 
Process p=Runtime.getRuntime().exec(command);

Please try following command to start your program minimized

command = "cmd.exe /c start /min doxygen " + strDoxyfilePath; 
Process p=Runtime.getRuntime().exec(command);
落花随流水 2024-12-02 09:23:07

试试这个:

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);

风流物 2024-12-02 09:23:07

我希望您正在寻找这个,这将完成您在上面的代码中想做的事情

String strDoxyfilePath = "any path";
        String[] Command ={"doxygen",strDoxyfilePath};
        try {
            Process process = new ProcessBuilder(Command).start();
            } catch (IOException e) {

            e.printStackTrace();
        }

I hope you are looking for this, this will do what you want to do in your above code

String strDoxyfilePath = "any path";
        String[] Command ={"doxygen",strDoxyfilePath};
        try {
            Process process = new ProcessBuilder(Command).start();
            } catch (IOException e) {

            e.printStackTrace();
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文