Java Runtime.getRuntime().exec

发布于 2024-12-14 02:14:24 字数 633 浏览 2 评论 0原文

当我在 Windows 命令提示符中运行此命令时,它会打开默认浏览器并加载相应的页面:

START: http://google.com

我尝试使用下面的 Java 代码执行相同的操作,但收到错误消息。

Runtime.getRuntime().exec(new String[] {"START", "http://google.com"});

这是我收到的错误:

Exception in thread "main" java.io.IOException: Cannot run program "START": CreateProcess error=2, The system cannot find the file specified
    at java.lang.ProcessBuilder.start(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at Test2.main(Test2.java:78)

我运行的是 Windows Vista。

When I run this in my Windows command prompt it opens the default browser and loads the respective page:

START: http://google.com

I am trying to do the same thing with the Java code below but get an error message.

Runtime.getRuntime().exec(new String[] {"START", "http://google.com"});

This is the error I am getting:

Exception in thread "main" java.io.IOException: Cannot run program "START": CreateProcess error=2, The system cannot find the file specified
    at java.lang.ProcessBuilder.start(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at Test2.main(Test2.java:78)

I am running Windows Vista.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

-柠檬树下少年和吉他 2024-12-21 02:14:24

我相信 START 是内置的命令提示符而不是可执行文件,因此您无法从 Java 调用它。如果要使用系统默认浏览器查看网页,请使用 java.awt.Desktop.browse()

I believe that START is a command prompt builtin rather than an executable file, so you can't call it from Java. If you want to view a webpage with the system's default browser, use java.awt.Desktop.browse().

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