toInstant()方法被新增到可用於將它們轉換到新的日期時間的API原始日期和日曆物件。使用ofInstant(Insant,ZoneId)方法得到一個LocalDateTime或ZonedDateTime物件。
讓我們來看看他們的操作。
選擇使用任何編輯器建立以下java程式在 C:/> JAVA
Java8Tester.javaimport java.time.LocalDateTime; import java.time.ZonedDateTime; import java.util.Date; import java.time.Instant; import java.time.ZoneId; public class Java8Tester { public static void main(String args[]){ Java8Tester java8tester = new Java8Tester(); java8tester.testBackwardCompatability(); } public void testBackwardCompatability(){ //Get the current date Date currentDate = new Date(); System.out.println("Current date: " + currentDate); //Get the instant of current date in terms of milliseconds Instant now = currentDate.toInstant(); ZoneId currentZone = ZoneId.systemDefault(); LocalDateTime localDateTime = LocalDateTime.ofInstant(now, currentZone); System.out.println("Local date: " + localDateTime); ZonedDateTime zonedDateTime = ZonedDateTime.ofInstant(now, currentZone); System.out.println("Zoned date: " + zonedDateTime); } }
使用javac編譯器編譯如下類
C:\JAVA>javac Java8Tester.java
現在執行Java8Tester看到的結果
C:\JAVA>java Java8Tester
看到結果。
Current date: Wed Dec 10 05:44:06 UTC 2014 Local date: 2014-12-10T05:44:06.635 Zoned date: 2014-12-10T05:44:06.635Z[Etc/UTC]