package com.test.jyj.shared.util;
import java.time.LocalDateTime;
public class DateTimeFormatter {
public static String LocalDateTimeToYYYYmmDD(LocalDateTime selectedDate) {
return selectedDate.format(java.time.format.DateTimeFormatter.ofPattern("yyyy-MM-dd"));
}
public static String LocalDateTimeToYYYYmmDDHHmmSS(LocalDateTime selectedDate) {
return selectedDate.format(java.time.format.DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss"));
}
public static String LocalDateTimeToYYYYmmDDHHmm(LocalDateTime selectedDate) {
return selectedDate.format(java.time.format.DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm"));
}
}
'꿀팁 활용' 카테고리의 다른 글
[Java] ArrayList 순서바꾸기 (0) | 2022.07.29 |
---|---|
Local History Revert 히스토리 되돌리기 깃허브 커밋전 롤백 되돌리기 (0) | 2022.07.24 |
구글플레이 , 앱스토어) 스토어 등록정보 스크린샷, 아이콘, 그래픽이미지 생성해주는 사이트 (0) | 2022.06.24 |
Nginx 명령어 모음 (0) | 2022.05.11 |
[QueryDSL] Expressions.dateTemplate !! 혹은 StringTemplate ?? QueryDSL 날짜시간 컬럼 나눠쓰기(split) (0) | 2022.04.13 |