欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue前端工程传到java后端的日期格式为2019-06-03T16:00:00.000Z,需要将此格式转换为2019-06-03 16:00:00

程序员文章站 2022-04-03 22:28:34
...

此问题是属于单纯的日期格式问题,直接上日期格式转换的代码:(转换后的日期可以直接作为条件使用mybatis进行条件查询)

public class DateUtil{

/**
     * 将2019-06-03T16:00:00.000Z日期格式转换为2019-06-03 16:00:00格式
     * @param oldDateStr
     * @return
     */
    public static Date transferDateFormat(String oldDateStr) {
    	if (StringUtils.isBlank(oldDateStr)){
            return null;
        }
    	Date date = null;
        Date date1 = null;
        String dateStr = null;
        try {
        	dateStr = oldDateStr.replace("Z", " UTC");//是空格+UTC
            DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS Z");
            date1 = df.parse(dateStr);
            SimpleDateFormat df1 = new SimpleDateFormat ("EEE MMM dd HH:mm:ss Z yyyy", Locale.UK);
            date = df1.parse(date1.toString());
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return date;
    }
}

 

相关标签: 时间格式转换