java yyyy年mm月
时间: 2023-10-14 18:09:47 浏览: 58
简单了解JAVA SimpleDateFormat yyyy和YYYY的区别
5星 · 资源好评率100%
在Java中获取当前年月可以使用如下代码:
```
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy年MM月");
String formattedDateTime = now.format(formatter);
System.out.println(formattedDateTime);
}
}
```
这段代码可以输出当前的年月,例如:2022年01月。
阅读全文