[JAVA][Date]두 날짜 사이의 기간 구하기 [JAVA] 두 날짜 사이의 기간 구하기 1. 전체 예시 코드 public void betweenDates() { /* 기간 시작일 */ String startDateStr = "2021-02-11"; /* 기간 마감일 */ String endDateStr = "2021-04-11"; /** * 1) SimpleDateFormat 객체를 생성하면서 Date 데이터를 읽을 수 있는 패턴을 입력한다. */ SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); try { /** * 2) 생성한 SimpleDateFormat 객체의 parse 메소드를 통해 String을 Date로 형 변환한다. */ Date startDate = formatter... 2022. 2. 11. 이전 1 ··· 5 6 7 8 다음