在Java 9中,LocalDate類別提供了toEpochSecond()方法,用於將本地日期轉換為紀元秒。 toEpochSecond()方法將LocalDate轉換為自紀元1970-01-01T00:00:00Z以來的秒數。 LocalDate可以與給定的時間和時區偏移量結合使用,從1970-01-01T00:00:00Z開始計算秒數。
<strong>public long toEpochSecond(LocalTime time, ZoneOffset offset)</strong>
import java.time.LocalDate; import java.time.LocalTime; import java.time.ZoneOffset; public class ToEpochSecondMethodTest { public static void main(String args[]) { <strong>LocalDate</strong> date = LocalDate.now(); <strong>LocalTime </strong>time = LocalTime.now(); System.out.println("LocalDate toEpochSecond : " + date.<strong>toEpochSecond</strong>(time, <strong>ZoneOffset</strong>.of("Z"))); System.out.println("LocalTime toEpochSecond : " + time.<strong>toEpochSecond</strong>(date, <strong>ZoneOffset</strong>.of("Z"))); } }
<strong>LocalDate toEpochSecond : 1583496984 LocalTime toEpochSecond : 1583496984</strong>#
以上是在Java 9中,toEpochSecond()方法的用途是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!