본문 바로가기

java

java.exe와 javaw.exe

java.exe와 javaw.exe의 차이


java.exe는 콘솔윈도우와 더불어 실행되고

javaw.exe는 콘솔윈도우가 없다.


=====================================




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. This implies you can't get it to display the version with -version since there is no console to display it on. Use javaw.exe when you don't want a command prompt window to appear. The javaw.exe launcher will, however, display a dialog box with error information if a launch fails for some reason.

 

java.exe로 실행된 어플리케이션은 java prompt를 유지하며, 콘솔창을 닫을 경우 프로그램 종료됨




 
 
javaw.exe로 실행된 어플리케이션은 콘솔창과 무관하게 작동함
 





'java' 카테고리의 다른 글

ehcache 캐시와 연동하기  (0) 2016.06.15
timer schedule vs scheduleAtFixedRate  (0) 2016.06.15
thread exception  (0) 2016.06.01
was listener  (0) 2016.04.18
Runtime addShutdownHook -퍼옴  (0) 2016.04.05