I am trying to retrieve which day of the month it is.
Such as today is August 29,2011.
What i would like to do is just get the days number such as 29, or 30. Which ever day of the month it is.
How would i go about doing this?
|
|
You'll want to do get a Calendar instance and get it's day of month
You can also get DAY_OF_WEEK, DAY_OF_YEAR, DAY_OF_WEEK_IN_MONTH, etc. |
||||
|
Take a look at
|
|||
|
|
|
The following method would help you in finding day of any specified date :
|
||||
|
|
|
You could start by reading the documentation for Date. Then you realize that Date’s methods are all deprecated and turn to Calender instead.
|
|||
|
|