使用 java.exe 以静默模式执行

发布于 2024-09-03 08:02:53 字数 114 浏览 3 评论 0原文

我想知道是否有办法将“java.exe”作为后台进程执行(静默模式执行),

例如: java -cp 。 MyClass arg1

我想将上面的语句作为后台进程运行,而不打开命令窗口

I would like to know if there is a way to execute the "java.exe" as a background process (silent mode execution)

Ex: java -cp . MyClass arg1

I want to run the above statement as a background process , without opening command window

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

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

发布评论

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

评论(2

小鸟爱天空丶 2024-09-10 08:02:54

在 Windows 下,使用 javaw.exe 而不是 java.exe。请参阅此处获取链接,相关位复制到此处:

javaw 命令与 java 相同,只是 javaw 没有关联的控制台窗口。当您不希望出现命令提示符窗口时,请使用 javaw。但是,如果由于某种原因启动失败,javaw 启动器将显示一个包含错误信息的对话框。

Under Windows, use javaw.exe instead of java.exe. See here for link, relevant bit copied here:

The javaw command is identical to java, except that with javaw there is no associated console window. Use javaw when you don't want a command prompt window to appear. The javaw launcher will, however, display a dialog box with error information if a launch fails for some reason.

爱情眠于流年 2024-09-10 08:02:54

使用

javaw -cp . MyClass arg1

(假设您使用的是 MS Windows)

如果您正在查看服务而不是应用程序,那么请查看“服务包装器”

Use

javaw -cp . MyClass arg1

(assuming you're on MS windows)

If you're looking at services rather then applications then have a look at 'service wrappers'

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