WedJul2200:00:00CST2020java转成指定⽇期格式的字符
串
Wed Jul 22 00:00:00 CST 2020 格林尼治时间,⼀般都是excel导⼊的时候,会变成这种格式
例:
/**将格林尼治格式的⽇期转为yyyy-MM-dd格式*/
String str = "Wed Jul 22 00:00:00 CST 2020" ;
checkDate(str);
public static String checkDate(String str){
String format1 = null;
try {
SimpleDateFormat format = new SimpleDateFormat(yyyy-MM-dd);
Date date = new Date(str);
java时间日期格式转换format1 = format.format(date);
} catch (Exception e) {
throw new BusinessException("⽇期格式错误!请以"+yyyy-mm-dd+"格式填写⽇期");
}
return format1;
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论