华企号 元宇宙 java 获取当前日期的下一月的当前日期

java 获取当前日期的下一月的当前日期

1、当前日期的下一月的当前日期

private static String getLastMonthDate(String dataTime) throws ParseException {
//时间字符串转 LocalDate 类型
LocalDate today = LocalDate.parse(dataTime);
//当前月份+(-1)
today = today.minusMonths(-1);
//LocalDate日期格式是”YYYY-MM-DD”,只需要用toString()就可以转化成字符串类型
return today.toString();

}
1.
2.
3.
4.
5.
6.
7.
8.
9.
2、另外一种方式

登录后复制
public static final SimpleDateFormat SHORT_DATE_FORMAT = new SimpleDateFormat(“yyyy-MM-dd”);
private static String getLastMonthDate(String repeatDate) {
Calendar calendar = Calendar.getInstance();
try {
if(repeatDate!=null && !””.equals(repeatDate)){
calendar.setTime(SHORT_DATE_FORMAT.parse(repeatDate));
}
} catch (ParseException e) {
e.printStackTrace();
}
calendar.set(calendar.get(Calendar.YEAR),calendar.get(Calendar.MONTH)+1,calendar.get(Calendar.MINUTE));
return SHORT_DATE_FORMAT.format(calendar.getTime());
}

上一篇
下一篇

发表回复

联系我们

联系我们

028-84868647

在线咨询: QQ交谈

邮箱: tech@68v8.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部