共计 367 个字符,预计需要花费 1 分钟才能阅读完成。
Java 中生成时间戳的方法有以下几种:
-
使用 System.currentTimeMillis() 方法:
long timestamp = System.currentTimeMillis(); -
使用 Date 类:
Date date = new Date();
long timestamp = date.getTime(); -
使用 Calendar 类:
Calendar calendar = Calendar.getInstance();
long timestamp = calendar.getTimeInMillis(); -
使用 Instant 类(Java 8 及以上版本):
Instant instant = Instant.now();
long timestamp = instant.toEpochMilli();
以上方法都可以获得当前时间的毫秒级时间戳。
丸趣 TV 网 – 提供最优质的资源集合!
正文完