java中 年度 2024 月份 7拼接成 年月代码
时间: 2024-09-23 14:13:48 浏览: 31
浅析Java中String与StringBuffer拼接的区别
在Java中,你可以使用`SimpleDateFormat`或者`java.time`包下的类来格式化日期。如果你想要将年份2024和月份7拼接成"年-月"的形式,可以使用`DateTimeFormatter`。这里是一个例子:
```java
import java.time.format.DateTimeFormatter;
import java.time.LocalDate;
public class Main {
public static void main(String[] args) {
int year = 2024;
int month = 7;
// 使用DateTimeFormatter创建一个格式化的字符串
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-M");
String formattedDate = LocalDate.of(year, month, 1).format(formatter); // 假设你想的是7月的第一天作为月份代表
System.out.println(formattedDate);
}
}
```
运行上述代码,会得到 "2024-07" 的结果。
阅读全文