java yyyymmdd转化为yyyy-mm-dd date
时间: 2023-08-09 12:07:23 浏览: 121
你可以使用Java中的SimpleDateFormat类来实现日期格式的转换。以下是将"yyyymmdd"格式转换为"yyyy-mm-dd"格式的示例代码:
```java
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateFormatConverter {
public static void main(String[] args) {
String inputDate = "20211231";
SimpleDateFormat inputFormat = new SimpleDateFormat("yyyyMMdd");
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd");
try {
Date date = inputFormat.parse(inputDate);
String outputDate = outputFormat.format(date);
System.out.println(outputDate);
} catch (ParseException e) {
e.printStackTrace();
}
}
}
```
在这个示例中,我们首先定义了输入日期的格式为"yyyyMMdd",输出日期的格式为"yyyy-MM-dd"。然后,使用`parse()`方法将输入日期字符串解析为Date对象。最后,使用`format()`方法将Date对象格式化为输出日期字符串"yyyy-MM-dd"。运行上述代码,将输出转换后的日期"2021-12-31"。
阅读全文