Date 썸네일형 리스트형 Date DATA 예제 import java.util.*; // JDK 생성자나 메소드 사용 자제 deprecated(한줄 그어진 것) 경고 // JDK 업그레이드 되면서 대체 기능 다른 클래스 포함 // Date 삭제 ; 이미 Date를 사용중인 프로그램 위해 남겨졌다. public class DateTest { public static void main(String[] args) { Date d = new Date(); System.out.println(d); System.out.println(d.toGMTString()); // 영문권 System.out.println(d.toLocaleString()); // 한국 } } Tue May 20 15:04:05 KST 2014 20 May 2014 06:04:.. 더보기 이전 1 다음