두 날짜 사이의 일수를 확인하려면 Java Calendar 클래스를 사용할 수 있습니다. 이를 사용하여 yyyy-mm-dd 형식으로 지정된 날짜 사이의 차이를 계산하는 방법을 보여드리겠습니다.
Calendar today = Calendar.getInstance(); String specifiedDate = "2010-08-25"; // Parse the specified date string int year = Integer.parseInt(specifiedDate.substring(0, 4)); int month = Integer.parseInt(specifiedDate.substring(5, 7)) - 1; // Months are zero-indexed int day = Integer.parseInt(specifiedDate.substring(8, 10)); Calendar thatDay = Calendar.getInstance(); thatDay.set(year, month, day); // Calculate the difference in milliseconds long diff = today.getTimeInMillis() - thatDay.getTimeInMillis(); // Convert milliseconds to days double days = diff / (24 * 60 * 60 * 1000); System.out.println("Number of days between today and " + specifiedDate + ": " + days);
참고:
위의 접근 방식은 대략적인 계산을 제공하므로 일반적으로 여기에만 의존하는 것은 바람직하지 않습니다. 보다 정확한 날짜 처리 및 조작을 위해서는 보다 포괄적인 날짜 관련 작업 세트를 제공하는 JodaTime 라이브러리를 사용하는 것이 좋습니다.
위 내용은 Java를 사용하여 두 날짜의 차이를 일 단위로 계산하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!