java把毫秒值转换为年月日
时间: 2024-04-09 21:27:38 浏览: 52
java获取年月日
5星 · 资源好评率100%
可以使用Java的日期时间类来将毫秒值转换为年月日。下面是一个示例代码:
```java
import java.time.Instant;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
public class MillisecondsToDate {
public static void main(String[] args) {
long milliseconds = 1628899200000L; // 毫秒值
// 转换为日期对象
Instant instant = Instant.ofEpochMilli(milliseconds);
LocalDateTime date = LocalDateTime.ofInstant(instant, ZoneId.systemDefault());
// 获取年月日
int year = date.getYear();
int month = date.getMonthValue();
int day = date.getDayOfMonth();
// 格式化日期
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd");
String formattedDate = date.format(formatter);
System.out.println("年:" + year);
System.out.println("月:" + month);
System.out.println("日:" + day);
System.out.println("格式化后的日期:" + formattedDate);
}
}
```
上面的代码将毫秒值转换为本地日期时间对象,并从中提取年、月、日。最后,使用`DateTimeFormatter`将日期格式化为指定的格式(例如"yyyy-MM-dd")进行显示。
阅读全文