728x90
반응형
실시간 날짜, 시간 출력 하기
Calendar
- 실시간으로 날짜와 시간(초 까지) 출력하는 자바 프로그램
import java.util.*;
public class C1 {
public static void main(String[] args) throws Exception {
for (int i = 0; i < 10; i++) {
Thread.sleep(1000);
Calendar now = Calendar.getInstance();
System.out.println(now);
System.out.print(now.get(Calendar.YEAR) + "년");
System.out.print(now.get(Calendar.MONTH) + 1 + "월");
System.out.print(now.get(Calendar.DATE) + "일");
System.out.print(now.get(Calendar.HOUR) + "시");
System.out.print(now.get(Calendar.MINUTE) + "분");
System.out.print(now.get(Calendar.SECOND) + "초");
int t = now.get(Calendar.AM_PM);
if (t == Calendar.AM)
System.out.println("오전");
else if (t == Calendar.PM)
System.out.println("오후");
}// for
}// main
}// class
728x90
반응형