...
|
...
|
@@ -530,11 +530,10 @@ public final class DateUtil { |
|
|
* @return
|
|
|
* @throws ParseException
|
|
|
*/
|
|
|
public Date dateTimeAddfifteen(Date date) throws ParseException {
|
|
|
public static 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();
|
...
|
...
|
|