Scott E Washburn wrote:
> Does anybody know why I would be getting an incorrect month from the
> Calendar object?
> I'm using VA for Java 2.0 Enterprise JDK 1.1.6.
>
> Heres the code I'm using:
>
> Calendar MyCalendar = Calendar.getInstance();
> int iMonth = MyCalendar.get( Calendar.MONTH );
> int iDay = MyCalendar.get( Calendar.DATE );
> int iYear = MyCalendar.get( Calendar.YEAR );
>
> With the computer set to todays date 5/28/1999,
>
> I'm getting :
> iMonth = 4
> iDay = 28
> iYear = 1999
>
> Why would I be getting a 4 for the Month instead of 5.
> I've run this in several other machines and it returns the same thing.
>
> Please help?????
>
It's not as blatantly obvious in the Javadoc as it could be, but month numbers
are zero-relative (January = 0, December = 11).
Craig McClanahan
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html