I have a Date object (java.sql.Date). I need to get 12 at night of that day. So I can create a time period from current time to end of the day.
How can I calculate that time with java.sql.Date. Please send me an example.
|
|
Ideally, use Joda Time which is a much better date and time API than the one in Java.
Note that this assumes UTC everywhere... whereas I suspect you want midnight local time in which case you'll need to specify the time zone. Also note that midnight doesn't always occur on every day in all time zones due to daylight saving time - the above code will give you the start of the day instead. |
|||
|
|
|
Using java.util.Calendar
|
||||
|
|
|
this is probably not the nicest way, but IMHO it's relatively easy to understand. It creates a new midnight java.sql.Date object for the input date "now"
|
|||
|
|
|
Use the following code:
|
||||
|
|