Notice
Recent Posts
Recent Comments
관리 메뉴

Developer Gonie

1. JDK 11 설치 및 환경변수 세팅 본문

DIE/Eclipse

1. JDK 11 설치 및 환경변수 세팅

이대곤 2022. 11. 13. 23:32

1. JDK11 설치파일 다운로드

https://www.oracle.com/kr/java/technologies/javase/jdk11-archive-downloads.html

 

Java Archive Downloads - Java SE 11 | Oracle 대한민국

WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not updated with the latest security patches and are not recommended for use in production. For production use Oracle recommends downlo

www.oracle.com

2. 환경변수 세팅

1) 내PC - 속성 - 고급 시스템 설정 - 환경변수 - 시스템변수 새로만들기 - JAVA_HOME 추가

* JAVA_HOME 추가시 jdk 경로는 위에서 설치한 경로를 기억해뒀다가 사용해야 함.

완료된 모습

2) 내PC - 속성 - 고급 시스템 설정 - 환경변수 - 시스템변수 Path 편집 - %JAVA_HOME%\bin 추가

완료된모습

3. cmd에서 정상동작 확인

javac를 입력해보아 정상 실행여부를 확인할 것

 

Comments