Mon Jul 31 00:00:00 GMT+08:00 2023 日期转换
时间: 2023-08-22 12:10:51 浏览: 196
根据提供的引用内容,可以使用Java的SimpleDateFormat类将日期字符串转换为指定格式的日期对象。在引用\[2\]和引用\[3\]中提供了两种不同的方法来实现日期转换。以下是一个示例代码,演示了如何将日期字符串"Mon Feb 13 08:00:00 GMT+08:00 2012"转换为指定格式的日期对象:
```java
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
public class DateFormat {
public static void main(String\[\] args) throws ParseException {
String dateString = "Mon Feb 13 08:00:00 GMT+08:00 2012";
SimpleDateFormat inputFormat = new SimpleDateFormat("EEE MMM dd hh:mm:ss z yyyy", Locale.ENGLISH);
Date date = inputFormat.parse(dateString);
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String result = outputFormat.format(date);
System.out.println(result);
}
}
```
运行以上代码,输出结果为:"2012-02-13 08:00:00"。这样就完成了将日期字符串转换为指定格式的日期对象的操作。
#### 引用[.reference_title]
- *1* *2* *3* [GMT时间格式转换(Mon Feb 13 08:00:00 GMT+08:00 2012)](https://blog.csdn.net/yaohucaizi/article/details/8845329)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文