> Java > java지도 시간 > 본문

두 Joda-Time DateTime 사이의 시간 차이를 분 단위로 어떻게 계산합니까?

Barbara Streisand
풀어 주다: 2024-11-02 14:50:03
원래의
338명이 탐색했습니다.

How do you calculate the time difference between two Joda-Time DateTimes in minutes?

Joda-Time DateTimes: 분 단위의 시차 계산

두 Joda-Time DateTimes 간의 시차를 어떻게 결정합니까? 몇 분 안에? 방법은 다음과 같습니다.

DateTimes 사이의 시차를 분 단위로 계산하려면 다음 접근 방식을 사용하세요.

<code class="java">public class DateTimeDifferenceExample {

    public static void main(String[] args) {
        // Create two DateTimes
        DateTime datetime1 = new DateTime();
        DateTime datetime2 = datetime1.plusMinutes(30);

        // Calculate the difference using Duration
        Duration duration = new Duration(datetime1, datetime2);
        long minutesDifference = duration.getStandardMinutes();

        // Alternatively, you can use Minutes.minutesBetween() method:
        long minutesDifference2 = Minutes.minutesBetween(datetime1, datetime2).getMinutes();

        // Output the difference
        System.out.println("Minutes difference: " + minutesDifference);
        System.out.println("Minutes difference using Minutes.minutesBetween(): " + minutesDifference2);
    }
}</code>
로그인 후 복사

출력:

Minutes difference: 30
Minutes difference using Minutes.minutesBetween(): 30
로그인 후 복사

위 내용은 두 Joda-Time DateTime 사이의 시간 차이를 분 단위로 어떻게 계산합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!