时间戳转LocalDate
时间: 2023-07-28 22:28:09 浏览: 447
可以使用Java 8中的`Instant`和`LocalDate`类来实现时间戳转`LocalDate`的功能。具体实现可以参考以下代码:
```java
import java.time.Instant;
import java.time.LocalDate;
import java.time.ZoneId;
public class TimestampToLocalDateExample {
public static void main(String[] args) {
long timestamp = 1620731235; // 时间戳,单位为秒
// 将时间戳转为Instant对象
Instant instant = Instant.ofEpochSecond(timestamp);
// 通过Instant对象和时区信息创建LocalDate对象
LocalDate localDate = instant.atZone(ZoneId.systemDefault()).toLocalDate();
// 输出LocalDate对象
System.out.println(localDate); // 输出:2021-05-11
}
}
```
上述代码中,首先使用`Instant.ofEpochSecond()`方法将时间戳转为`Instant`对象。然后,使用`Instant.atZone()`方法将`Instant`对象转为`ZonedDateTime`对象,再使用`ZonedDateTime.toLocalDate()`方法将其转为`LocalDate`对象。最后,输出`LocalDate`对象即可。需要注意的是,`atZone()`方法需要传入时区信息,这里使用`ZoneId.systemDefault()`获取当前系统默认的时区信息。
阅读全文