毫秒值转localdatetime
时间: 2023-09-27 07:09:50 浏览: 77
13位毫秒值转换为时间
5星 · 资源好评率100%
可以使用Java 8中的`java.time`包来将毫秒值转换为`LocalDateTime`对象。你可以使用`Instant.ofEpochMilli()`方法创建一个表示给定毫秒值的`Instant`对象,然后使用`.atZone()`方法将其转换为特定时区的`ZonedDateTime`对象,最后使用`.toLocalDateTime()`方法将其转换为`LocalDateTime`对象。
下面是一个示例代码:
```java
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
public class Main {
public static void main(String[] args) {
long millis = 1624524412000L; // 你的毫秒值
Instant instant = Instant.ofEpochMilli(millis);
LocalDateTime localDateTime = instant.atZone(ZoneId.systemDefault()).toLocalDateTime();
System.out.println(localDateTime);
}
}
```
在上面的示例中,我们使用`Instant.ofEpochMilli()`方法将给定的毫秒值转换为`Instant`对象。然后,我们使用`.atZone()`方法将其转换为系统默认时区(可以根据需要更改)的`ZonedDateTime`对象。最后,我们使用`.toLocalDateTime()`方法将其转换为`LocalDateTime`对象,并将其打印输出。
请注意,上述代码假设你的毫秒值是从1970年1月1日开始计算的。如果你的毫秒值是从其他时间点开始计算的,你可能需要调整代码中的相应部分。
阅读全文