SyntaxFix
Write A Post
Hire A Developer
Questions
public static Date convertTimestampToDate(Timestamp timestamp) { Instant ins=timestamp.toLocalDateTime().atZone(ZoneId.systemDefault()).toInstant(); return Date.from(ins); }