Java.sql.date extends java.util.date, so is it save to convert between the two by casting a java.sql.date as a java.util.date? Or is there some other way to convert them?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes, you can just upcast it. The |
|||
|
|
|
You don't necessarily need to cast, you can just treat a SQL Date as if it was a util Date:
Compiles and runs just fine. |
|||
|
|