...
|
...
|
@@ -523,4 +523,22 @@ public final class DateUtil { |
|
|
return format.format(date);
|
|
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 传入时间+15分钟
|
|
|
* @param date
|
|
|
* @return
|
|
|
* @throws ParseException
|
|
|
*/
|
|
|
public Date dateTimeAddfifteen(Date date) throws ParseException {
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
|
|
|
Calendar nowTime = Calendar.getInstance();
|
|
|
|
|
|
nowTime.setTime(date);
|
|
|
nowTime.add(Calendar.MINUTE, 15);
|
|
|
Date time = nowTime.getTime();
|
|
|
|
|
|
return time;
|
|
|
}
|
|
|
} |
...
|
...
|
|