java中如何转换日期格式为年月日
时间: 2024-05-02 13:22:31 浏览: 163
使用js,将时间格式为年-月-日,获取格式化后的日期
你可以使用SimpleDateFormat类来转换日期格式为年月日。具体的代码如下:
```java
SimpleDateFormat inputFormat = new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy年MM月dd日");
String inputDateStr = "2022-02-22";
try {
Date inputDate = inputFormat.parse(inputDateStr);
String outputDateStr = outputFormat.format(inputDate);
System.out.println(outputDateStr);
} catch (ParseException e) {
e.printStackTrace();
}
```
输出结果为:
```
2022年02月22日
```
阅读全文