본문 바로가기
Java

자바(Java) 개발환경 구축하기(2021) 1/2 - How to Install Java JDK on Windows

by sycareer 2021. 3. 3.

오늘은 자바 개발환경을 만들어보았습니다.

Today, I built a Java development environment.

 

우선, 구글에 JDK를 검색합니다.

First, google 'JDK'.

 

 


++수정 Edited (2021.03.11)

 

주 버전이 가장 최신인 것 보다는 지속적으로 버그를 수정하는

LTS버전을 사용하는 것이 좋습니다.

Java SE 11 (LTS)

이런식으로 되어있는 키트를 찾아 다운로드하면 됩니다.

Using the LTS version that continuously edits bugs is better than using the latest version.


 

 

 

컴퓨터의 운영체제를 확인하고 싶다면,

제어판 > 시스템 및 보안 > 시스템으로 들어갑니다.

To check your computer's operating system, 

go to Control > Systems and Security > Systems.

 

 

다운로드 된 exe파일을 실행하여 JDK설치가 끝났다면

다음의 경로를 들어갑니다.

If you run the downloaded exe file and the jdk installation is finished,

Enter the following path.

 

 

C:\Program Files\Java\jdk-15.0.2\bin

 

 

제어판 > 시스템 및 보안 > 시스템 > 고급 시스템 설정 으로 들어갑니다.

Go to Control > Systems and Security > Systems > Advanced System Settings

 

 

Environment Variables

 

 

 

 


++수정 Edited (2021.03.11)

새로운 버전의 JDK를 설치한다면,

해당 버전의 Path를 클릭 후 '위로 이동'버튼을 사용하여 맨 위로 올려주세요.

Path 환경 변수에 등록된 순서대로 명령어를 찾기 때문입니다.

If you are installing a new version of JDK,

click the path and place it at the top using the right icon(U).


 

 

 

이름과 값을 아래와 같이 입력합니다.

변수 값은 복사해둔 주소에서 \bin을 지워줍니다.

Input the name and value as shown below.

Delete \bin from the copied address and put it in the variable value.

 

 

C:\Program Files\Java\jdk-15.0.2

 

 

 

 

설치는 모두 끝났고 확인하는 과정만 남았습니다.

The installation is complete and there is only a verification process left.

 

 

javac라고 입력 후 enter키를 누르고 아래와 같이 어쩌고저쩌고 나오면 된 겁니다.

Type 'javac' and press Enter to succeed as shown below.

 

 

끝!

Finished!

 

 

 

이클립스 설치하기

To install Eclipse

↓↓↓↓

sycareer.tistory.com/5

 

자바(JAVA) 개발환경 구축하기(2021) 2/2 - How to Install Eclipse for Java

JDK설치가 끝났다면, 이클립스를 설치해보겠습니다. If you are done installing JDK, let's start installing Eclipse. 아직 JDK를 설치하지 않은 상태라면, If you are not ready, sycareer.tistory.com/4 자바(..

sycareer.tistory.com