프로그래밍 언어 중 가장 높은 점유율을 기록중인 언어. Job도 많음.
자바 설치 여부, 버전 확인
$ java -version
The program java can be found in the following packages
메시지가 출력되면 다음 명령으로 JRE (런타임 환경) 설치
$ sudo apt-get install default-jre
추가로 JDK는 다음과 같이 설치할 수 있음
$ sudo apt-get install default-jdk
public class HelloWorld { public static void main(String[] args) { System.out.println("Hello, World"); } }