java yyyymmdd转化为yyyy-mm-dd
时间: 2023-09-22 07:09:34 浏览: 85
你可以使用 SimpleDateFormat 类来将 "yyyymmdd" 格式的日期转换为 "yyyy-mm-dd" 格式的日期。以下是一个示例代码:
```java
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateFormatExample {
public static void main(String[] args) {
String inputDate = "20211231";
String outputPattern = "yyyy-MM-dd";
SimpleDateFormat inputFormat = new SimpleDateFormat("yyyyMMdd");
SimpleDateFormat outputFormat = new SimpleDateFormat(outputPattern);
try {
Date date = inputFormat.parse(inputDate);
String outputDate = outputFormat.format(date);
System.out.println(outputDate);
} catch (ParseException e) {
e.printStackTrace();
}
}
}
```
在这个例子中,我们将输入日期字符串定义为 "20211231",输出日期格式定义为 "yyyy-MM-dd"。然后,我们使用 SimpleDateFormat 类的 parse() 方法将输入日期字符串解析为 Date 对象。接下来,我们使用 format() 方法将 Date 对象格式化为指定的输出日期格式,并将结果打印出来。在本例中,输出将是 "2021-12-31"。
请注意,这个例子假设输入日期字符串的格式是正确的,并且不包含任何格式错误。如果输入的日期字符串格式不正确,将会抛出 ParseException 异常。你可以根据需要进行错误处理。
阅读全文