Hi,大家好,我是编程小6,很荣幸遇见你,我把这些年在开发过程中遇到的问题或想法写出来,今天说一说java中system.currenttimemillis_java获取时区[通俗易懂],希望能够帮助你!!!。
首先我们看一下代码:
public static void timeZonePrint() {
LocalDateTime now = LocalDateTime.now();
// 获取秒数 gmt+8
Long second8 = now.toEpochSecond(ZoneOffset.of("+8"));
// 获取毫秒数 gmt+8
Long milliSecond8 = now.toInstant(ZoneOffset.of("+8")).toEpochMilli();
// 获取秒数 gmt+0
Long second0 = now.toEpochSecond(ZoneOffset.of("+0"));
// 获取毫秒数 gmt+0
Long milliSecond0 = now.toInstant(ZoneOffset.of("+0")).toEpochMilli();
// 获取秒数 currentTimeMillis
long totalMilliSeconds = System.currentTimeMillis();
TimeZone timeZone = TimeZone.getDefault();
System.out.println("System Default TimeZone: " + timeZone.getID());
System.out.println("now: " + now);
System.out.println("+8 second: " + second8);
今天的分享到此就结束了,感谢您的阅读,如果确实帮到您,您可以动动手指转发给其他人。