Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Tags more
Archives
Today
Total
관리 메뉴

공부블로그

No consoles to display at this time 오류 본문

IT/JAVA

No consoles to display at this time 오류

So1_b 2022. 4. 16. 16:37

 

- 해결 방법:

[Run] - [ Run configurations... ] - [commod] - [Allocate console (necessary for input)]선택 

 

 

 

 

 

 

 

 

* [ Run configurations... ] 선택 시 나오는 Java Application의 파일 목록은 main 메서드가 존재하는 (.class)클래스 파일만 나타남.

 

* [Project]-[clean]=자바는 컴파일시 모든 소스코드를 빌드하지 않고 수정된 java파일과 관련 파일들만 컴파일함. 이전에 빌드했던 결과를 지우고 프로젝트를 재빌드함. 

* java.exe와 javaw.exe의 차이

  java.exe와 javaw.exe는 자바 응용 프로그램 로더로 javac.exe(컴파일러)가 만든 클래스 파일을 해석, 실행시킴.

  javaw.exe는 java.exe와 다르게 실행시킬 때 콘솔 창이 없다. 

'IT > JAVA' 카테고리의 다른 글

컴파일 세부 과정  (0) 2022.05.12
JVM 구조  (0) 2022.05.07
이클립스 exit code=-805306369  (0) 2022.03.30
예외(Exception)_2  (0) 2022.02.17
예외 (Exception)_1  (0) 2022.02.15
Comments