I want to know the number of days of date, the getDay() method returns wrong answer, how can i know the correct number of days ?
|
closed as not a real question by Isaac Truett, BalusC, Wooble, adarshr, John Saunders May 5 '11 at 16:51
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You should really explore the java.util.Calendar API |
|||
|
|
|
You need to use the
There is a The method you tried to use ( If you don't like the |
|||||
|
|
Since you are probably working with Gregorian calendars (the 12 month, January, February, etc. calendar), you probably want to use java.util.GregorianCalendar. There are other calendars available, even if they might not all be shipped with the JVM. |
|||
|
|
|
Looking for the day of the month? check this http://download.oracle.com/javase/1.4.2/docs/api/java/util/Date.html#getDate() Edit: This is only if you're using Date (not recommended since most of all methods are Deprecated). If you're willing to use Calendar (which is far better and not full of Deprecated methods) you can do things such as:
|
||||
|
|
|
You mean the one the docs say not to use?
Use the |
|||
|
|