2022-08-13 00:00:00 - 2022-08-13 23:59:59这种格式,后端如何处理成为date类型

2022-08-14 11:01:35 浏览数 (1)

目录

  • 1 需求
  • 2 实现

1 需求

前端传到后端的时间间隔是 2022-08-13 00:00:00 - 2022-08-13 23:59:59

后端接收到的是一个字符串,那么后端如何变为date类型

2 实现

filterTime 值为 2022-08-13 00:00:00 - 2022-08-13 23:59:59

代码语言:javascript复制
// parse param
		Date triggerTimeStart = null;
		Date triggerTimeEnd = null;
		if (filterTime!=null && filterTime.trim().length()>0) {
			String[] temp = filterTime.split(" - ");
			if (temp.length == 2) {
				triggerTimeStart = DateUtil.parseDateTime(temp[0]);
				triggerTimeEnd = DateUtil.parseDateTime(temp[1]);
			}
		}

时间工具类

代码语言:javascript复制
    private static final String DATETIME_FORMAT = "yyyy-MM-dd HH:mm:ss";


    /**
     * parse datetime string, like "yyyy-MM-dd HH:mm:ss"
     *将字符串 类型的日期   转为  Date 类型
     * @param dateString
     * @return
     * @throws ParseException
     */
    public static Date parseDateTime(String dateString) {
        return parse(dateString, DATETIME_FORMAT);
    }

0 人点赞