LocalDateTimeUtil获取年月不要日
时间: 2023-08-17 09:11:13 浏览: 157
您好!对于获取年月不包含日的需求,您可以使用Java中的LocalDateTime类配合DateTimeFormatter类来实现。下面是一个示例代码:
```java
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class LocalDateTimeUtil {
public static void main(String[] args) {
LocalDateTime now = LocalDateTime.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM");
String yearMonth = now.format(formatter);
System.out.println("当前年月:" + yearMonth);
}
}
```
在上述代码中,我们使用`LocalDateTime.now()`获取当前的日期和时间,然后使用`DateTimeFormatter`指定日期时间格式。通过`format()`方法将`LocalDateTime`对象按照指定格式转换为字符串,其中"yyyy-MM"表示只保留年份和月份。
希望能对您有所帮助!如果您有任何其他问题,请随时提问。
阅读全文