/*
java.time패키지
java7이전 까지는 Date와 Calendar클래스를 이용하여 날짜와 시간정보를 얻을 수 있었다.
하지만 Date클래스의 대부분의 메서드는 deprecated되었고 Date의 용도는 단순히 특정시점의
날짜정보만 저장하는 역할만 한다. Calendar클래스는 날짜와 시간정보를 얻기에는 충분하지만
날짜와 시간을 조작하거나 비교하기에는 불충분하다.
그래서 java8버전부터는 날짜와 시간을 나타내는 여러가지 API를 추가했다. 이 API는 java.util
패키지에는 없고 별도의 java.time패키지로 제공된다.
*/
public class TimeMain1 {
public static void main(String[] args) throws InterruptedException {
// 날짜와 시간객체 생성
// LocalDate, LocalTime, LocalDateTime, ZonedDateTime, Instant(특정시점의 Time-Stamp)
// 1. 날짜
LocalDate currDate = LocalDate.now();
System.out.println("현재일자 = " + currDate);
LocalDate targetDate = LocalDate.of(2024, 02, 10);
System.out.println("목표일자 = " + targetDate);
// 2. 시간
LocalDateTime currDateTime = LocalDateTime.now();
System.out.println("현재일시 = " + currDateTime);
LocalDateTime targetDateTime = LocalDateTime.of(2024, 02, 10, 06, 30, 10, 546546);
System.out.println("목표일시 = " + targetDateTime);
// 3. TimeZone vs UTC(협정세계시)
ZonedDateTime utcDateTime = ZonedDateTime.now(ZoneId.of("UTC"));
System.out.println("세계협정시 = " + utcDateTime );
ZonedDateTime SeoulDateTime = ZonedDateTime.now(ZoneId.of("Asia/Seoul"));
System.out.println("서울시간존 = " + SeoulDateTime );
// 4. 특정시점의 타임스탬프
Instant instant1 = Instant.now();
Thread.sleep(10); // 10초 정지
Instant instant2 = Instant.now();
if(instant1.isBefore(instant2)) {
System.out.println("instant1 시간이 빠릅니다!");
} else if(instant1.isAfter(instant2)) {
System.out.println("instant1 시간이 늦습니다!");
} else {
System.out.println("동일한 시간입니다.");
}
System.out.println("시간차이(nano) : " + instant1.until(instant2, ChronoUnit.NANOS));
}
}
public class TimeMain2 {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
System.out.println(now);
String strDateTime = now.getYear() + "년 ";
strDateTime += now.getMonthValue() + "월 ";
strDateTime += now.getMonth() + "월 ";
strDateTime += now.getDayOfMonth() + "일 ";
strDateTime += now.getDayOfWeek() + " ";
strDateTime += now.getHour() + "시 ";
strDateTime += now.getMinute() + "분 ";
strDateTime += now.getSecond() + "초 ";
strDateTime += now.getNano() + "ns ";
System.out.println(strDateTime);
System.out.println();
LocalDate nowDate = now.toLocalDate();
System.out.println(nowDate);
if(nowDate.isLeapYear()) {
System.out.println("윤년입니다!");
} else {
System.out.println("평년입니다!");
}
LocalTime nowTime = now.toLocalTime();
System.out.println(nowTime);
// 시차
ZonedDateTime utcDateTime = ZonedDateTime.now(ZoneId.of("UTC"));
ZonedDateTime SeoulDateTime = ZonedDateTime.now(ZoneId.of("Asia/Seoul"));
System.out.println("세계협정시 = " + utcDateTime );
System.out.println("서울시간존 = " + SeoulDateTime );
ZoneId seoulZoneId = SeoulDateTime.getZone();
System.out.println("서울존ID = " + seoulZoneId);
ZoneOffset seoulZoneOffset = SeoulDateTime.getOffset();
System.out.println("서울존로오프셋 = " + seoulZoneOffset); // 시차를 리턴
}
}
public class TimeMain3 {
public static void main(String[] args) {
// 1. 더하기, 빼기
LocalDateTime now = LocalDateTime.now();
System.out.println("현재시간 : " + now);
LocalDateTime tartgetDateTime = now
.plusYears(1)
.minusMonths(2)
.plusDays(3)
.plusHours(4)
.minusMinutes(5)
.plusSeconds(6);
System.out.println("연산시간 : " + tartgetDateTime);
// 2. 변경하기
// 1) 직접변경하기
tartgetDateTime = now
.withYear(2024)
.withMonth(12)
.withDayOfMonth(11)
.withHour(13)
.withMinute(30)
.withSecond(20);
System.out.println("연산시간 : " + tartgetDateTime);
// 2) 상대변경하기 - 년
tartgetDateTime = now.with(TemporalAdjusters.firstDayOfYear());
System.out.println("금년 첫번째일 : " + tartgetDateTime);
tartgetDateTime = now.with(TemporalAdjusters.lastDayOfYear());
System.out.println("금년 마지막일 : " + tartgetDateTime);
tartgetDateTime = now.with(TemporalAdjusters.firstDayOfNextYear());
System.out.println("익년 첫번째일 : " + tartgetDateTime);
System.out.println();
// 3) 상대변경하기 - 월
tartgetDateTime = now.with(TemporalAdjusters.firstDayOfMonth());
System.out.println("금월 첫번째일 : " + tartgetDateTime);
tartgetDateTime = now.with(TemporalAdjusters.lastDayOfMonth());
System.out.println("금월 마지막일 : " + tartgetDateTime);
tartgetDateTime = now.with(TemporalAdjusters.firstDayOfNextMonth());
System.out.println("익월 첫번째일 : " + tartgetDateTime);
System.out.println();
// 4) 상대변경하기 - 요일
tartgetDateTime = now.with(TemporalAdjusters.firstInMonth(DayOfWeek.MONDAY));
System.out.println("금월 첫번째월요일 : " + tartgetDateTime);
tartgetDateTime = now.with(TemporalAdjusters.next(DayOfWeek.MONDAY));
System.out.println("돌아오는 월요일 : " + tartgetDateTime);
tartgetDateTime = now.with(TemporalAdjusters.previous(DayOfWeek.MONDAY));
System.out.println("지난 월요일 : " + tartgetDateTime);
System.out.println();
// 3. 날짜와 시간 비교하기
LocalDateTime startDateTime = LocalDateTime.of(2023, 1,1,9,0,0);
LocalDateTime endDateTime = LocalDateTime.of(2024, 3,31,18,0,0);
System.out.println("시작일 : " + startDateTime);
System.out.println("종료일 : " + endDateTime);
if(startDateTime.isBefore(endDateTime)) {
System.out.println("진행중...");
} else if(startDateTime.isEqual(endDateTime)) {
System.out.println(("종료중..."));
} else if(startDateTime.isAfter(endDateTime)) {
System.out.println("종료!");
}
System.out.println("[종료까지 남은 시간]");
long remainYear = startDateTime.until(endDateTime, ChronoUnit.YEARS);
long remainMonth = startDateTime.until(endDateTime, ChronoUnit.MONTHS);
long remainDay = startDateTime.until(endDateTime, ChronoUnit.DAYS);
long remainHour = startDateTime.until(endDateTime, ChronoUnit.HOURS);
long remainMinute = startDateTime.until(endDateTime, ChronoUnit.MINUTES);
long remainSecond = startDateTime.until(endDateTime, ChronoUnit.SECONDS);
System.out.println("남은 해 : " + remainYear);
System.out.println("남은 월 : " + remainMonth);
System.out.println("남은 일 : " + remainDay);
System.out.println("남은 시 : " + remainHour);
System.out.println("남은 분 : " + remainMinute);
System.out.println("남은 초 : " + remainSecond);
System.out.println();
remainYear = ChronoUnit.YEARS.between(startDateTime, endDateTime);
remainMonth = ChronoUnit.MONTHS.between(startDateTime, endDateTime);
remainDay = ChronoUnit.DAYS.between(startDateTime, endDateTime);
remainHour = ChronoUnit.HOURS.between(startDateTime, endDateTime);
remainMinute = ChronoUnit.MINUTES.between(startDateTime, endDateTime);
remainSecond = ChronoUnit.SECONDS.between(startDateTime, endDateTime);
System.out.println("남은 해 : " + remainYear);
System.out.println("남은 월 : " + remainMonth);
System.out.println("남은 일 : " + remainDay);
System.out.println("남은 시 : " + remainHour);
System.out.println("남은 분 : " + remainMinute);
System.out.println("남은 초 : " + remainSecond);
System.out.println();
System.out.println("[종료까지 남은 시간]");
Period period = Period.between(startDateTime.toLocalDate(), endDateTime.toLocalDate());
System.out.print("남은 기간 : " + period.getYears() + "년 ");
System.out.print(period.getMonths() + "개월");
System.out.println(period.getDays() + "일 ");
Duration duration = Duration.between(startDateTime.toLocalTime(), endDateTime.toLocalTime());
System.out.println("남은 초 : " + duration.getSeconds());
// 4. 파싱과 포매팅하기
DateTimeFormatter formatter;
LocalDate localDate;
localDate = LocalDate.parse("2024-05-21");
System.out.println(localDate);
formatter = DateTimeFormatter.ISO_LOCAL_DATE;
localDate = LocalDate.parse("2024-05-21", formatter);
System.out.println(localDate);
formatter = DateTimeFormatter.ofPattern("yyyy/MM/dd");
localDate = LocalDate.parse("2024/05/21", formatter);
System.out.println(localDate);
formatter = DateTimeFormatter.ofPattern("yyyy.MM.dd");
localDate = LocalDate.parse("2024.05.21", formatter);
System.out.println(localDate);
LocalDateTime now1 = LocalDateTime.now();
DateTimeFormatter dateTimeFormatter
= DateTimeFormatter.ofPattern("yyyy년 M월 d일 a h시 m분");
String nowString = now1.format(dateTimeFormatter);
System.out.println(nowString);
}
}
'일 > JAVA' 카테고리의 다른 글
java13.generic (1) | 2023.05.26 |
---|---|
java12.thread (0) | 2023.05.26 |
java11.basic_API.string (0) | 2023.05.25 |
java11.basic_API.class (0) | 2023.05.25 |
java11.basic_API.Objects (0) | 2023.05.25 |