3 回答
TA贡献1856条经验 获得超17个赞
你的格式化程序的模式是错误的。缺少年份 ( "yyyy"
) 且时区不匹配。要匹配它,您需要同时使用两者z
,并且Z
还需要为 GMT 添加不匹配的文本,例如"'GMT'Z (z)"
.
试试这个:
"E MMM dd yyyy HH:mm:ss 'GMT'Z (z)"
TA贡献1942条经验 获得超3个赞
正如您在这里看到的,您可以使用以下模式:
public static void main(String[] args) throws Exception {
String date1 = "Fri May 31 2019 05:08:40 GMT-0700 (PDT)";
DateTimeFormatter f = DateTimeFormatter.ofPattern( "EEE MMM dd yyyy HH:mm:ss 'GMT'Z '('z')'" ).withLocale( Locale.US );
ZonedDateTime zdt = ZonedDateTime.parse( date1 , f );
LocalDate ld = zdt.toLocalDate();
DateTimeFormatter fLocalDate = DateTimeFormatter.ofPattern( "yyyy-MM-dd" );
String output = ld.format( fLocalDate ) ;
System.out.println(output);
}
输出:
2019-05-31
TA贡献1859条经验 获得超6个赞
由于您只需要yyyy-MM-dd格式的日期,请尝试以下代码:
String date1 = "Fri May 31 2019 05:08:40 GMT-0700";
//this format is good enough to read required data from your String
DateFormat df1 = new SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss");
//format you require as final output
DateFormat df2 = new SimpleDateFormat("yyyy-MM-dd");
//convert String to date ( with required attributes ) and then format to target
System.out.println(df2.format(df1.parse(date1)));
添加回答
举报