Home > Java > javaTutorial > body text

How does Java call the CMD command of the windows system and start a new program?

WBOY
Release: 2023-05-10 14:43:06
forward
2133 people have browsed it

我们通常在使用Java 调用脚本的时候,会使用 Runtime 类如:

// 打开浏览器并访问 http://localhost:7001
Runtime.getRuntime().exec("cmd /c start http://localhost:8080");
Copy after login

这里我们使用到了终端 CMD

# 执行字符串指定的命令,并在执行命令后保留窗口
cmd /k echo "Hello World!"
# 执行字符串指定的命令,然后退出
cmd /c echo "Hello World!"
Copy after login

start 命令

start命令是 cmd 终端提供的一个命令,通过该命令可以启动单独的窗口以运行指定的程序或命令。

# 创建一个新的 cmd 窗口
start cmd
Copy after login

如果单独运行 start ,你会发现会报错:

Runtime.getRuntime().exec("start http://localhost:8080");
Copy after login

Exception in thread “main” java.io.IOException: Cannot run program “start”: CreateProcess error=2, 系统找不到指定的文件。
at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)
at java.lang.Runtime.exec(Runtime.java:621)
at java.lang.Runtime.exec(Runtime.java:451)
at java.lang.Runtime.exec(Runtime.java:348)
at com.example.Main3.main(Main3.java:22)
… 4 more

这是因为 start 命令是 cmd 终端中提供的一个命令,需要在 cmd 环境下执行。
通过 Java 创建一个新的终端:

// 第一 cmd 命令用于创建环境执行 start 命令
// cmd /k 表示在创建一个新的终端并保留该终端
Runtime.getRuntime().exec(String.format("cmd /c start cmd /k");
Copy after login

应用

我们可以在调试应用时在应用启动后通过该命令让其自动打开浏览器。

SpirngBootApplication.run(Application.class.args);
Runtime.getRuntime().exec("cmd /c start http://localhost:8080");
Copy after login

或者让 Arthas 自动启动连接当前应用。这个在做一些Java诊断工具的学习中会很有帮助,不需要我们手敲命令行去查找相关参数后才能能打开应用了。

RuntimeMXBean bean = ManagementFactory.getRuntimeMXBean();
String pid = bean.getName().split("@")[0];
String cmd = String.format("cmd /c start cmd /k D:\\arthas-bin\\as.bat %s", pid);
Runtime.getRuntime().exec(cmd);
Copy after login

The above is the detailed content of How does Java call the CMD command of the windows system and start a new program?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template