728x90
728x90
convert date to string
-
String으로 저장된 날짜를 Date 형식으로 변환하여 DB에 저장하기JAVA 2021. 9. 14. 13:11
String 으로 저장된 날짜를 Date 로 바꿔서 DB에 저장해야 할 때가 있다 아래의 예시로 보자 // String인 날짜 String sourceDate = "2021-09-14"; // 날짜 포맷을 생성하고 LocalDate 형태로 변환한다 DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); LocalDate date = LocalDate.parse(sourceDate, dateTimeFormatter); DB 로 저장할 때는 한번 더 변환이 필요하다 java.sql.Date convertedDate = new java.sql.Date.valueOf(date);