public static String calendarMethod(String time, int year, int month, int day, int hour, int min, int sec) {
//时分秒默认是 00:00:00
SimpleDateFormat sdate = new SimpleDateFormat("yyyy-MM-dd");
Date date = null;
try {
date = sdate.parse(time);
} catch (Exception e) {
log.error("异常[{}]", e.toString());
return null;
}
Calendar c = Calendar.getInstance();
c.setTime(date); //设置时间
c.add(Calendar.YEAR, year);
c.add(Calendar.MONTH, month);
c.add(Calendar.DAY_OF_MONTH, day);
c.add(Calendar.HOUR_OF_DAY, hour);
c.add(Calendar.MINUTE, min);
c.add(Calendar.SECOND, sec);
SimpleDateFormat sdate1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
return sdate1.format(c.getTime());
}
指定时间增加年月日 时分秒
Posted 纯洁的心灵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了指定时间增加年月日 时分秒相关的知识,希望对你有一定的参考价值。
以上是关于指定时间增加年月日 时分秒的主要内容,如果未能解决你的问题,请参考以下文章