Which data type in Java can hold just the date and doesn’t require a time component? For example, just to store 12/07/2012. I’m working with persisting the data to/from a database that has a date-only data type, so I’m looking for the best equivalent data type in Java.
Which data type in Java can hold just the date and doesn’t require a
Share
from the JDK:
java.sql.Date:or from JodaTime:
DateMidnightorLocalDate(thanks@cdeszaq)