09-Jun-2023转yyyy-mm-dd java实现
时间: 2023-08-21 22:05:13 浏览: 77
JS验证日期的格式YYYY-mm-dd 具体实现
可以使用Java中的SimpleDateFormat类来实现日期格式转换,以下是将"09-Jun-2023"转换为"2023-06-09"的示例代码:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateConvertExample {
public static void main(String[] args) throws Exception {
String inputDate = "09-Jun-2023";
SimpleDateFormat inputFormat = new SimpleDateFormat("dd-MMM-yyyy");
Date date = inputFormat.parse(inputDate);
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd");
String outputDate = outputFormat.format(date);
System.out.println(outputDate);
}
}
```
运行结果为:
```
2023-06-09
```
阅读全文