java获取当前年月
时间: 2024-11-04 14:14:13 浏览: 24
Java获取当前时间年月日的方法
在Java中,你可以使用`java.time`包下的`LocalDate`类来获取当前的年月。这里是一个简单的示例:
```java
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class CurrentDateExample {
public static void main(String[] args) {
// 获取当前日期
LocalDate currentDate = LocalDate.now();
// 格式化日期,只显示年和月
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM");
String formattedDate = currentDate.format(formatter);
System.out.println("当前日期是:" + formattedDate);
}
}
```
这段代码会打印出类似 "2023-04" 的结果,表示当前的年份和月份。
阅读全文