如何将String类型的20230403字符串转化为yyyy-MM-dd
时间: 2023-11-20 21:07:27 浏览: 101
C# 字符串常用方法
格式的日期?
您可以使用SimpleDateFormat类来将String类型的20230403字符串转化为yyyy-MM-dd格式的日期。代码示例如下:
```java
String dateStr = "20230403";
DateFormat inputFormat = new SimpleDateFormat("yyyyMMdd");
DateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd");
try {
Date date = inputFormat.parse(dateStr);
String outputDateStr = outputFormat.format(date);
System.out.println(outputDateStr);
} catch (ParseException e) {
e.printStackTrace();
}
```
输出结果为:2023-04-03。
阅读全文