자바

프로그래밍 언어/JAVA

[JAVA] String -> LocalDate 날짜 형식 변환하여 두 날짜 간 일 수 차이 구하기(Period 이용)

String date1 = "2021-09-29 12:00"; String date2 = "2021-10-01 14:00"; LocalDate changeDate1= LocalDate.parse(date1, DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm")); LocalDate changeDate2= LocalDate.parse(date2, DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm")); import java.time.Period; Period.between(changeDate1,changeDate2).getDays(); System.out.println("result : " + Period.between(changeDate1,..

프로그래밍 언어/JAVA

[JAVA] SimpleDateFormat 이용하여 원하는 형식으로 날짜 출력하기

개발하다보면 DB에 저장해둔 날짜형식을 다른 형식으로 변경하여 다른곳에 사용해야할 때가 있다. 그때 활용하게 되는게, SimpleDateFormat 객체이다. 해당 객체를 사용하기 위해서는 import 를 해주어야한다. import java.text.SimpleDateFormat; 원하는 동작 2021-06-08 11:00 -> 20210608110055 / 20210608 먼저 변경되기 전 format의 객체를 생성한다. SimpleDateFormat oldFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm"); 변경할 format의 객체를 생성한다. SimpleDateFormat newFormat = new SimpleDateFormat("yyyyMMddHHmmss"..

개발하는 채찡
'자바' 태그의 글 목록