java.exe 和 javaw.exe 之间的区别

发布于 2024-08-16 07:49:26 字数 120 浏览 8 评论 0原文

最近我注意到一些应用程序在 javaw 上运行(而不是在 java 上)。它们之间有什么区别?如何在 javaw 上运行我的 Swing 应用程序?

Recently I noted that some applications are running on javaw (not in java). What is the difference between them and how can I run my Swing application on javaw?

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

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

发布评论

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

评论(4

不爱素颜 2024-08-23 07:49:26

java.exe 是控制台应用程序,而 javaw.exe 是 Windows 应用程序(无控制台)。您不能拥有 Console javaw.exe

java.exe is the console app while javaw.exe is windows app (console-less). You can't have Console with javaw.exe.

潜移默化 2024-08-23 07:49:26

java.exe 是等待应用程序完成直到接受下一个命令的命令。
javaw.exe 是不会等待应用程序完成的命令。您可以继续执行其他命令。

java.exe is the command where it waits for application to complete untill it takes the next command.
javaw.exe is the command which will not wait for the application to complete. you can go ahead with another commands.

樱花坊 2024-08-23 07:49:26

区别在于每个可执行文件所针对的子系统

  • java.exe 的目标是 CONSOLE 子系统。
  • javaw.exe 的目标是 WINDOWS 子系统。

The difference is in the subsystem that each executable targets.

  • java.exe targets the CONSOLE subsystem.
  • javaw.exe targets the WINDOWS subsystem.
还在原地等你 2024-08-23 07:49:26

javaw.exe 命令与 java.exe 相同,只是 javaw.exe 没有关联的控制台窗口

The javaw.exe command is identical to java.exe, except that with javaw.exe there is no associated console window

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