在 Java 中将 Epoch 转换为 MySQL 时间戳
Java 程序员经常遇到需要转换 Epoch 时间,表示自 Unix 以来的秒数纪元,转换为 MySQL 时间戳格式。以下是如何使用 Java 的现代日期时间 API java.time 来实现此转换。
java.time
随 Java SE 8 引入,java.time 提供了一个全面且防错的日期时间 API。它将 ANSI SQL 类型映射到 java.time 类型,如下所示:
ANSI SQL | Java SE 8 |
---|---|
DATE | LocalDate |
TIME | LocalTime |
TIMESTAMP | LocalDateTime |
TIME WITH TIMEZONE | OffsetTime |
TIMESTAMP WITH TIMEZONE | OffsetDateTime |
Converting Epoch to MySQL Timestamp
使用 java.time,可以轻松转换MySQL 时间戳的纪元时间:
// Get current epoch time in milliseconds long epochNow = System.currentTimeMillis(); // Create a LocalDateTime object from the epoch time LocalDateTime timestampNow = Instant.ofEpochMilli(epochNow).atZone(ZoneId.systemDefault()).toLocalDateTime(); // Convert to MySQL timestamp format using DateTimeFormatter String mySQLtimestamp = timestampNow.format(DateTimeFormatter.ofPattern("yyyy-MM-dd:HH:mm:ss"));
示例用法
在您提供的代码片段中,您有 epochNow 表示当前时间,date7daysAgo 表示过去 7 天的时间戳。您可以使用上面的代码轻松地将这两个时间戳转换为 MySQL 格式并将它们存储在 mySQLtimestamp 中。
String mySQLtimestampNow = LocalDateTime.ofInstant(Instant.ofEpochMilli(epochNow), ZoneId.systemDefault()) .format(DateTimeFormatter.ofPattern("yyyy-MM-dd:HH:mm:ss")); String mySQLtimestamp7DaysAgo = LocalDateTime.ofInstant(Instant.ofEpochMilli(date7daysAgo), ZoneId.systemDefault()) .format(DateTimeFormatter.ofPattern("yyyy-MM-dd:HH:mm:ss"));
以上是如何在 Java 中将 Epoch 时间转换为 MySQL 时间戳?的详细内容。更多信息请关注PHP中文网其他相关文章!