您的位置:

Java获取秒级时间戳

一、System.currentTimeMillis()

public static long currentTimeMillis()

Java中最常用的获取时间戳的方法是System.currentTimeMillis(),该方法返回当前时间距离1970年1月1日0时0分0秒的毫秒数。由于1秒等于1000毫秒,因此可以通过除以1000来得到秒级时间戳。

long timestamp = System.currentTimeMillis() / 1000L;
System.out.println("当前秒级时间戳:" + timestamp);

以上代码即可获取当前的秒级时间戳。

System.currentTimeMillis()方法的优点是性能较高,最终结果只需进行一次除法运算即可得到秒级时间戳。但缺点也很明显,它是依靠系统的时钟来计时的,如果系统时钟被修改,则获取到的时间戳也会相应地改变。

二、Instant.now().getEpochSecond()

public static Instant now()
public long getEpochSecond()

Java 8引入了新的时间API,其中Instant类用于表示一个瞬间,可以通过Instant.now()获取当前的瞬间,然后通过getEpochSecond()方法获取秒级时间戳。

long timestamp = Instant.now().getEpochSecond();
System.out.println("当前秒级时间戳:" + timestamp);

使用Instant.now().getEpochSecond()方法获取秒级时间戳的优点是精确度高,不会受到系统时钟的影响,缺点是相比于System.currentTimeMillis()方法稍微慢一些。

三、new Date().getTime()

public Date()
public long getTime()

Date类可以用于表示一个日期和时间,可以通过new Date()获取当前的日期和时间,然后通过getTime()方法获取距离1970年1月1日0时0分0秒的毫秒数,最后通过除以1000来得到秒级时间戳。

long timestamp = new Date().getTime() / 1000L;
System.out.println("当前秒级时间戳:" + timestamp);

使用new Date().getTime()方法获取秒级时间戳的优点是简便易用,缺点是Date类已经被Java官方标记为Deprecated,因此不推荐使用。

四、Clock.systemUTC().instant().getEpochSecond()

public static Clock systemUTC()
public Instant instant()
public long getEpochSecond()

Clock类可以用于提供一个时间源,其中systemUTC()方法返回格林威治标准时间的Clock,instant()方法返回当前时刻的Instant,然后通过getEpochSecond()方法获取秒级时间戳。

long timestamp = Clock.systemUTC().instant().getEpochSecond();
System.out.println("当前秒级时间戳:" + timestamp);

使用Clock.systemUTC().instant().getEpochSecond()方法获取秒级时间戳的优点是能够提供可靠的时间源,缺点是代码稍微有些繁琐。

五、ThreadLocalRandom.current().nextInt()

public static ThreadLocalRandom current()
public int nextInt()

ThreadLocalRandom类是Java 7引入的一个新类,用于生成随机数,可以通过ThreadLocalRandom.current()获取当前线程的ThreadLocalRandom对象,然后通过nextInt()方法生成一个随机整数,然后将该随机整数作为秒级时间戳。

int random = ThreadLocalRandom.current().nextInt();
long timestamp = random < 0 ? -random : random;
System.out.println("当前秒级时间戳:" + timestamp);

使用ThreadLocalRandom.current().nextInt()方法生成秒级时间戳的优点是可以随机产生一个大整数,缺点是可能会产生负数,需要进行相应的处理。