I want to nullify the date or day or year in a java date object.
How do it set it manually?
|
|
The Date object isn't meant to be manipulated, it is considered an opaque value that just represents a moment in time. To manipulate a date, you need to use a calendar
|
|||||
|
|
I would use the Joda time library for handling dates in Java. With Joda time you can zero various date components and maintain immutability like this:
As has been commented - what parts of the date you want to remove depends on what you mean by "nullify" but Joda time also lets you specify Partial DateTime objects as well. |
|||
|
|
Instead of changing the |
|||
|
|