如何将Java 8 Calendar转换为 LocalDateTime?

时间:2025-04-02 07:41:06

在 Java 8 中将 Calendar 对象转换为 LocalDateTime 的快速示例。而() 用于将 Calendar 转换为 LocalDateTime 对象。

LocalDateTime api 可以完全替代 Date 类,因为 Date 函数的所有功能都以简单而精确的方式完成。

要将 Calendar 转换为 LocalDateTime,您需要执行以下步骤。

步骤1:

首先,使用返回 Calendar 对象的 () 方法创建一个Calendar实例 。

第2步 :

接下来,使用() 方法从日历实例中获取时区。

第 3 步:

现在,使用()方法从 TimeZone 类中 获取ZoneId对象。

最后, 使用日历即时和区域 ID 值调用((), zoneId)方法

<b>import</b> ;
<b>import</b> ;
<b>import</b> ;
<b>import</b> ;

<b>public</b> <b>class</b> CalenderToLocalDateTimeExample {

    <b>public</b> <b>static</b> <b>void</b> main(String[] args) {

        <font><i>//Create a calender instance.</i></font><font>
        Calendar calendar = ();

        (</font><font>"Calender instance : "</font><font>+calendar);

        </font><font><i>// Getting the timezone</i></font><font>
        TimeZone tz = ();

        </font><font><i>// Getting zone id</i></font><font>
        ZoneId zoneId = ();

        </font><font><i>// conversion</i></font><font>
        LocalDateTime localDateTime = ((), zoneId);

        (</font><font>"Local date time object  : "</font><font>+localDateTime);

    }
}
</font>
<b>import</b> ;
<b>import</b> ;
<b>import</b> ;
<b>import</b> ;

<b>public</b> <b>class</b> CalenderToLocalDateExample {

    <b>public</b> <b>static</b> <b>void</b> main(String[] args) {

        Calendar cal = ();
        Date input = ();
        LocalDate la = ().atZone(()).toLocalDate();

        (<font>"Calender to LocalDate : "</font><font>+la);
    }
}
</font>

可以在一行中将转换为 Java 8 中的 LocalDateTime 和 LocalDate。为重用 . 编写单独的方法是一种很好的做法:

<b>import</b> ;
<b>import</b> ;
<b>import</b> ;

<b>public</b> <b>class</b> SingleLineCalenderToLocalDateTimeExample {

    <b>public</b> <b>static</b> <b>void</b> main(String[] args) {

        <font><i>//Create a calender instance.</i></font><font>
        Calendar calendar = ();


        LocalDateTime singleLineLocalDateTime = getLocalDateTime(calendar);
        LocalDate singleLineLocalDate = getLocalDate(calendar);

        (</font><font>"Converted LocalDateTime : "</font><font>+singleLineLocalDateTime);
        (</font><font>"Converted LocalDate : "</font><font>+singleLineLocalDate);

    }

    <b>private</b> <b>static</b> LocalDateTime getLocalDateTime(Calendar calendar){

        <b>return</b>  ((), ().toZoneId());
    }

    <b>private</b> <b>static</b> LocalDate getLocalDate(Calendar calendar){

        <b>return</b>  ((), ().toZoneId()).toLocalDate();
    }
}
</font>

显示的程序示例在 GitHub 中。