java格式化Thu Jun 08 15:08:49 CST 2023
时间: 2024-03-17 21:40:33 浏览: 198
您可以使用SimpleDateFormat类来格式化日期时间。以下是一个示例代码,将"Thu Jun 08 15:08:49 CST 2023"格式化为"yyyy-MM-dd HH:mm:ss"格式的日期时间:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;
public class DateFormatExample {
public static void main(String[] args) {
String dateString = "Thu Jun 08 15:08:49 CST 2023";
SimpleDateFormat inputFormat = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", Locale.ENGLISH);
inputFormat.setTimeZone(TimeZone.getTimeZone("GMT+8"));
try {
Date date = inputFormat.parse(dateString);
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = outputFormat.format(date);
System.out.println("Formatted date: " + formattedDate);
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
输出结果为:Formatted date: 2023-06-08 15:08:49
阅读全文