Difference between java and javaw

后端 未结 6 1274
感动是毒
感动是毒 2021-01-12 14:16

I searched to know the difference between java.exe and javaw.exe. I read through Difference between Java.exe and Javaw.exe.

There it is st

6条回答
  •  死守一世寂寞
    2021-01-12 14:59

    1. 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.

    2. java.exe is the console app while javaw.exe is windows app (console-less), The javaw.exe command is identical to java.exe, except that with javaw.exe there is no associated console window

提交回复
热议问题