java addmonth,Java:自定义为当前日期添加1个月

博客内容讨论了在Java中使用Calendar对象添加月份时遇到的日期边界问题。当日期是月份的最后一天,例如01/31/2012,添加1个月后会变成02/29/2012,而期望的结果是03/01/2012。解决方案是利用Calendar.getActualMaximum(Calendar.DAY_OF_MONTH)来重置日期为下个月的最大天数,以确保始终得到下个月的最后一天。

I've read around and basically I've figured out that the Calendar object is capable of adding 1 month to a date specified by using something like:

Calendar cal = Calendar.getInstance();

cal.add(Calendar.MONTH, 1);

Although I don't like its behavior whenever the date is on either the 30 or 31. If ever I add 1 month to 01/31/2012, the output becomes 02/29/2012. When I add 1 more month, it becomes 03/29/2012.

Is there anyway I can force 02/29/2012 to become 03/01/2012 automatically?

Basically this is what I want to happen:

Default date: 01/31/2012

Add 1 month: 03/01/2012

Add 1 more month: 03/31/2012

解决方案

What you are asking for is some implicit knowledge that if the starting date is the last day of the month, and you add 1 month, the result should be the last day of the following month. I.e. the property "last-day-of-month" should be sticky.

This is not directly available in Java's Calendar, but one possible solution is to use Calendar.getActualMaximum(Calendar.DAY_OF_MONTH) to reset the day after incrementing the month.

Calendar cal = ...;

cal.add(Calendar.MONTH,1);

cal.set(Calendar.DAY_OF_MONTH,cal.getActualMaximum(Calendar.DAY_OF_MONTH));

You could even subclass GregorianCalendar and add a method

public Calendar endOfNextMonth() { ... }

to encapsulate the operation.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值