![JDK 여러버전 사용 방법 포스팅 썸네일 이미지](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FdoP2Vf%2FbtsFjHt6qC3%2FE8tsWvCK0ljdTLNionqrS1%2Fimg.png)
IT/JAVA
JDK 여러버전 사용 방법
1. jdk 설치 오라클 사이트에서 원하는 버전을 다운로드(C:\Program Files\Java 위치에 jdk 설치) https://www.oracle.com/java/technologies/downloads/ Download the Latest Java LTS Free Subscribe to Java SE and get the most comprehensive Java support available, with 24/7 global access to the experts. www.oracle.com 2. scripts 폴더 생성 3. bat 파일 생성(버전별로 생성 필요) @echo off set JAVA_HOME={JDK 주소} set Path=%JAVA_HOME%\bin;%Path% echo Ja..