How to get the name of the day from java sql.Timestamp object such as Monday, Tuesday?
feedback
|
|
You convert your java.sql.Timestamp to a java.sql.Date and send it through a Calendar.
| |||||||||||||
feedback
|
|
SimpleDateFormat will provide a Locale specific representation using the pattern
Example usage:
returns But beware that | |||
|
feedback
|