如何获取一个月后的时间
发布网友
发布时间:2022-04-11 05:30
我来回答
共1个回答
热心网友
时间:2022-04-11 06:59
java中可以这样定义一个公共方法获取系统时间戳:
public static String getFormatDateTime(java.util.Date currDate, String format) {
if (currDate == null) {
return "";
}
SimpleDateFormat dtFormatdB = null;
try {
dtFormatdB = new SimpleDateFormat(format);
return dtFormatdB.format(currDate);
} catch (Exception e) {
dtFormatdB = new SimpleDateFormat(TIME_FORMAT);
try {
return dtFormatdB.format(currDate);
} catch (Exception ex) {
}
}
return "";
}
增加一个月后的公共方法:
Calendar cal = Calendar.getInstance();
cal.add(Calendar.MONTH, +1);