java.util.date 로 쩔쩔 고생했던게 엊그제 같은데 진작 8로 갈아탈걸 그랬다.
그것도 모르고 java.jodal.LocalDate로 개발했넹
자주 사용할 법한 것들만 정리하였다.
LocalDateTime은 여기에 따로 추가하도록 하겠당당
java.time.LocalDate로 날짜 표현하기
현재 날짜 반환
LocalDate localDate=LocalDate.now();
System.out.println(localDate.toString());//(현재기준)2018-09-11 출력
현재 날짜의 다양한 요소 반환
System.out.println(localDate.getDayOfYear());//365일 중 며칠인지?
System.out.println(localDate.getDayOfMonth());//오늘이 며칠인지?, 254
System.out.println(localDate.getDayOfWeek());//무슨 요일인지?, 11
System.out.println(localDate.getDayOfWeek().getValue());//무슨 요일인지?(월-1 ~일-7), 2
System.out.println(localDate.getMonth());//September출력
System.out.println(localDate.getMonthValue());//9출력
System.out.println(localDate.getYear());//2018출력
System.out.println(localDate.lengthOfMonth());// 30, 31, 28, 29 출력
System.out.println(localDate.plusDays(1));//하루 뒤 출력
System.out.println(localDate.plusWeeks(1));//한 주 뒤 출력
System.out.println(localDate.plusYears(1));//일년 뒤 출력
System.out.println(localDate.withDayOfMonth(8));//8일로 변경하여 출력 - 2018-09-08
System.out.println(localDate.withDayOfYear(12));///그 해의 12일로 변경하여 출력 - 2018-01-12
System.out.println(localDate.withMonth(10));//10월로 변경하여 출력 - 2018-10-11
System.out.println(localDate.withYear(2012));//2012년으로 변경하여 출력 - 2012-09-11
참고) java.joda.time.LocalDate
LocalDate currentDate = LocalDate.now();//현재 날짜 반환
int curday=currentDate.getDayOfWeek();//요일
LocalDate afterTwoWeeks= currentDate.plusDays(15-curday+Integer.parseInt(day));//2주 후
'이론 > 알고리즘&자료구조&Java' 카테고리의 다른 글
[Java8] 자바의 람다 표현식 - 자바로도 함수형 프로그래밍을 할 수 있다 (0) | 2018.11.06 |
---|---|
[Java] Thread in java(간단 사용 예제) (0) | 2018.09.20 |
[백준 알고리즘 - 1806] 부분합 + StringTokenizer 정리 - java (0) | 2018.09.04 |
[JAVA] String/StringBuffer/StringBuilder (0) | 2018.08.27 |
[소수구하기] 에라토스테네스의 체 알고리즘 -java (0) | 2018.08.26 |