java的区别。exe和javaw.exe

时间:2021-09-14 20:45:02

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?

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

4 个解决方案

#1


67  

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.

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

#2


104  

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

java。exe是一个控制台应用程序,javaw。exe是windows应用程序(无控制器)。不能使用java .exe使用控制台。

#3


38  

The difference is in the subsystem that each executable targets.

不同之处在于每个可执行目标的子系统。

  • java.exe targets the CONSOLE subsystem.
  • java。exe针对控制台子系统。
  • javaw.exe targets the WINDOWS subsystem.
  • javaw。exe针对WINDOWS子系统。

#4


12  

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

javaw。exe命令与java相同。exe,除了javaw。exe没有关联的控制台窗口

#1


67  

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.

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

#2


104  

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

java。exe是一个控制台应用程序,javaw。exe是windows应用程序(无控制器)。不能使用java .exe使用控制台。

#3


38  

The difference is in the subsystem that each executable targets.

不同之处在于每个可执行目标的子系统。

  • java.exe targets the CONSOLE subsystem.
  • java。exe针对控制台子系统。
  • javaw.exe targets the WINDOWS subsystem.
  • javaw。exe针对WINDOWS子系统。

#4


12  

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

javaw。exe命令与java相同。exe,除了javaw。exe没有关联的控制台窗口