Java

Windows 환경에 Zulu JDK 설치하기

재심 2022. 11. 20. 12:26

[설치 경로]

다운로드: https://www.azul.com/downloads/

(msi버전 다운로드하고 설치) 

기본설치경로:  C:\Program Files\Zulu\zulu-11

 

[환경변수 설정]

  • 환경변수 - 시스템변수 - JAVA_HOME 추가 - 변수값 (C:\Program Files\Zulu\zulu-11)

JAVA_HOME 추가

  • 환경변수 - 시스템변수 - Path 편집 후 추가 (%JAVA_HOME%\bin)

Path 설정

 

[확인]

cmd에서 확인

C:\Users\jaeshim>javac
 
 
Usage: javac <options> <source files>
where possible options include:
  @<filename>                  Read options and filenames from file
  -Akey[=value]                Options to pass to annotation processors
  --add-modules <module>(,<module>)*
        Root modules to resolve in addition to the initial modules, or all modules
        on the module path if <module> is ALL-MODULE-PATH.
  --boot-class-path <path>, -bootclasspath <path>
        Override location of bootstrap class files
  --class-path <path>, -classpath <path>, -cp <path>
        Specify where to find user class files and annotation processors
  -d <directory>               Specify where to place generated class files
 
 
...

설치 확인