Java8中LocalDateTime與時(shí)間戳timestamp的互相轉(zhuǎn)換
Java8 LocalDateTime與timestamp轉(zhuǎn)換
將timestamp轉(zhuǎn)為L(zhǎng)ocalDateTime
public LocalDateTime timestamToDatetime(long timestamp){ Instant instant = Instant.ofEpochMilli(timestamp); return LocalDateTime.ofInstant(instant, ZoneId.systemDefault()); }
將LocalDataTime轉(zhuǎn)為timestamp
public long datatimeToTimestamp(LocalDateTime ldt){ long timestamp = ldt.toInstant(ZoneOffset.of("+8")).toEpochMilli(); return timestamp; }
我在網(wǎng)上還找到了另一個(gè)將datetime轉(zhuǎn)為時(shí)間戳的方法:
ZoneId zone = ZoneId.systemDefault(); long timestamp = ldt.atZone(zone).toInstant().toEpochMilli();
Java8的時(shí)間轉(zhuǎn)為時(shí)間戳的大概的思路就是LocalDateTime先轉(zhuǎn)為Instant,設(shè)置時(shí)區(qū),然后轉(zhuǎn)timestamp。
附一個(gè)Java8中的LocalDateTime工具類
工具類
package com.kingboy.common.utils.date; import java.time.*; import java.time.format.DateTimeFormatter; import java.time.temporal.ChronoUnit; import java.time.temporal.TemporalUnit; import java.util.Date; /* * @author kingboy * @Date 2017/7/22 下午2:12 * @Description LocalDateTimeUtils is used to Java8中的時(shí)間類 */ public class LocalDateTimeUtils { //獲取當(dāng)前時(shí)間的LocalDateTime對(duì)象 //LocalDateTime.now(); //根據(jù)年月日構(gòu)建LocalDateTime //LocalDateTime.of(); //比較日期先后 //LocalDateTime.now().isBefore(), //LocalDateTime.now().isAfter(), //Date轉(zhuǎn)換為L(zhǎng)ocalDateTime public static LocalDateTime convertDateToLDT(Date date) { return LocalDateTime.ofInstant(date.toInstant(), ZoneId.systemDefault()); } //LocalDateTime轉(zhuǎn)換為Date public static Date convertLDTToDate(LocalDateTime time) { return Date.from(time.atZone(ZoneId.systemDefault()).toInstant()); } //獲取指定日期的毫秒 public static Long getMilliByTime(LocalDateTime time) { return time.atZone(ZoneId.systemDefault()).toInstant().toEpochMilli(); } //獲取指定日期的秒 public static Long getSecondsByTime(LocalDateTime time) { return time.atZone(ZoneId.systemDefault()).toInstant().getEpochSecond(); } //獲取指定時(shí)間的指定格式 public static String formatTime(LocalDateTime time,String pattern) { return time.format(DateTimeFormatter.ofPattern(pattern)); } //獲取當(dāng)前時(shí)間的指定格式 public static String formatNow(String pattern) { return formatTime(LocalDateTime.now(), pattern); } //日期加上一個(gè)數(shù),根據(jù)field不同加不同值,field為ChronoUnit.* public static LocalDateTime plus(LocalDateTime time, long number, TemporalUnit field) { return time.plus(number, field); } //日期減去一個(gè)數(shù),根據(jù)field不同減不同值,field參數(shù)為ChronoUnit.* public static LocalDateTime minu(LocalDateTime time, long number, TemporalUnit field){ return time.minus(number,field); } /** * 獲取兩個(gè)日期的差 field參數(shù)為ChronoUnit.* * @param startTime * @param endTime * @param field 單位(年月日時(shí)分秒) * @return */ public static long betweenTwoTime(LocalDateTime startTime, LocalDateTime endTime, ChronoUnit field) { Period period = Period.between(LocalDate.from(startTime), LocalDate.from(endTime)); if (field == ChronoUnit.YEARS) return period.getYears(); if (field == ChronoUnit.MONTHS) return period.getYears() * 12 + period.getMonths(); return field.between(startTime, endTime); } //獲取一天的開(kāi)始時(shí)間,2017,7,22 00:00 public static LocalDateTime getDayStart(LocalDateTime time) { return time.withHour(0) .withMinute(0) .withSecond(0) .withNano(0); } //獲取一天的結(jié)束時(shí)間,2017,7,22 23:59:59.999999999 public static LocalDateTime getDayEnd(LocalDateTime time) { return time.withHour(23) .withMinute(59) .withSecond(59) .withNano(999999999); } }
測(cè)試類
package com.kingboy.common.localdatetimeutils; import com.kingboy.common.utils.date.LocalDateTimeUtils; import org.junit.Test; import java.time.LocalDateTime; import java.time.temporal.ChronoUnit; import static com.kingboy.common.utils.date.LocalDateTimeUtils.getDayEnd; import static com.kingboy.common.utils.date.LocalDateTimeUtils.getDayStart; /** * @author kingboy * @Date 2017/7/22 下午7:16 * @Description LocaDateTimeUtilsTest is used to 測(cè)試LocalDateTime工具 */ public class LocaDateTimeUtilsTest { @Test public void format_test() { System.out.println(LocalDateTimeUtils.formatNow("yyyy年MM月dd日 HH:mm:ss")); } @Test public void betweenTwoTime_test() { LocalDateTime start = LocalDateTime.of(1993, 10, 13, 11, 11); LocalDateTime end = LocalDateTime.of(1994, 11, 13, 13, 13); System.out.println("年:" + LocalDateTimeUtils.betweenTwoTime(start, end, ChronoUnit.YEARS)); System.out.println("月:" + LocalDateTimeUtils.betweenTwoTime(start, end, ChronoUnit.MONTHS)); System.out.println("日:" + LocalDateTimeUtils.betweenTwoTime(start, end, ChronoUnit.DAYS)); System.out.println("半日:" + LocalDateTimeUtils.betweenTwoTime(start, end, ChronoUnit.HALF_DAYS)); System.out.println("小時(shí):" + LocalDateTimeUtils.betweenTwoTime(start, end, ChronoUnit.HOURS)); System.out.println("分鐘:" + LocalDateTimeUtils.betweenTwoTime(start, end, ChronoUnit.MINUTES)); System.out.println("秒:" + LocalDateTimeUtils.betweenTwoTime(start, end, ChronoUnit.SECONDS)); System.out.println("毫秒:" + LocalDateTimeUtils.betweenTwoTime(start, end, ChronoUnit.MILLIS)); //============================================================================================= /* 年:1 月:13 日:396 半日:792 小時(shí):9506 分鐘:570362 秒:34221720 毫秒:34221720000 */ } @Test public void plus_test() { //增加二十分鐘 System.out.println(LocalDateTimeUtils.formatTime(LocalDateTimeUtils.plus(LocalDateTime.now(), 20, ChronoUnit.MINUTES), "yyyy年MM月dd日 HH:mm")); //增加兩年 System.out.println(LocalDateTimeUtils.formatTime(LocalDateTimeUtils.plus(LocalDateTime.now(), 2, ChronoUnit.YEARS), "yyyy年MM月dd日 HH:mm")); //============================================================================================= /* 2017年07月22日 22:53 2019年07月22日 22:33 */ } @Test public void dayStart_test() { System.out.println(getDayStart(LocalDateTime.now())); System.out.println(getDayEnd(LocalDateTime.now())); //============================================================================================= /* 2017-07-22T00:00 2017-07-22T23:59:59.999999999 */ } }
總結(jié)
到此這篇關(guān)于Java8中LocalDateTime與時(shí)間戳timestamp互相轉(zhuǎn)換的文章就介紹到這了,更多相關(guān)Java8 LocalDateTime與timestamp轉(zhuǎn)換內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
- Java?LocalDateTime獲取時(shí)間信息、格式化、轉(zhuǎn)換為數(shù)字時(shí)間戳代碼示例
- JAVA中時(shí)間戳與LocalDateTime互相轉(zhuǎn)換代碼例子
- springboot中如何配置LocalDateTime JSON返回時(shí)間戳
- Spring rest接口中的LocalDateTime日期類型轉(zhuǎn)時(shí)間戳
- java傳入時(shí)間戳返回LocalDateTime的實(shí)現(xiàn)方法
- Java中Date、LocalDate、LocalDateTime、LocalTime、時(shí)間戳之間的相互轉(zhuǎn)換代碼
相關(guān)文章
Token登陸驗(yàn)證機(jī)制的原理及實(shí)現(xiàn)
這篇文章介紹了Token登陸驗(yàn)證機(jī)制的原理及實(shí)現(xiàn),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2021-12-12Spring?Boot解決循環(huán)依賴的過(guò)程詳細(xì)記錄
這篇文章主要介紹了Spring?Boot解決循環(huán)依賴的過(guò)程,Spring框架通過(guò)三級(jí)緩存機(jī)制解決循環(huán)依賴問(wèn)題,分別為singletonObjects、earlySingletonObjects和singletonFactories,需要的朋友可以參考下2024-09-09java加密MD5實(shí)現(xiàn)及密碼驗(yàn)證代碼實(shí)例
這篇文章主要介紹了java加密MD5實(shí)現(xiàn)及密碼驗(yàn)證代碼實(shí)例,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-12-12spring boot 項(xiàng)目利用Jenkins實(shí)現(xiàn)自動(dòng)化部署的教程詳解
這篇文章主要介紹了spring boot 項(xiàng)目利用Jenkins實(shí)現(xiàn)自動(dòng)化部署的方法,本文給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2018-07-07SpringCloud之微服務(wù)容錯(cuò)的實(shí)現(xiàn)
這篇文章主要介紹了SpringCloud之微服務(wù)容錯(cuò)的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-05-05Spring?Boot日志SLF4J和Logback示例詳解
這篇文章主要介紹了Spring?Boot日志SLF4J和Logback詳解,Logback相比于Log4j,性能提高了10倍以上的性能,占用的內(nèi)存也變小了,并且文檔十分詳細(xì),推薦使用Slf4j+Logback,需要的朋友可以參考下2023-07-07java8實(shí)現(xiàn)List中對(duì)象屬性的去重方法
這篇文章主要介紹了java8實(shí)現(xiàn)List中對(duì)象屬性的去重方法,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2021-03-03IDEA如何使用spring-Initializr快速搭建SpringBoot
這篇文章主要介紹了IDEA如何使用spring-Initializr快速搭建SpringBoot問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2024-05-05