android studio 实现20210314转为2021-03-14
时间: 2024-09-18 14:07:04 浏览: 39
在Android Studio中,如果你有一个日期字符串"20210314"需要转换为"2021-03-14"这种标准的日期格式,你可以使用Java的`SimpleDateFormat`或者更现代的`java.time`包来完成。以下是使用`java.time.LocalDate`的示例:
```java
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
String originalDate = "20210314";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd"); // 指定原始格式
LocalDate date = LocalDate.parse(originalDate, formatter); // 解析日期
DateTimeFormatter outputFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); // 指定目标格式
String formattedDate = date.format(outputFormatter); // 转换为指定格式
System.out.println(formattedDate); // 输出 "2021-03-14"
}
}
```
在这个例子中,我们首先创建了一个`DateTimeFormatter`来解析输入的日期字符串,然后用它将字符串转换为`LocalDate`对象。接着,我们再创建一个新的`DateTimeFormatter`用于输出格式化的日期,并将其格式化结果打印出来。
阅读全文