Can we convert timestamp to Date?
Can we convert timestamp to Date? Timestamp class can be converted to Date class in java using the Date class which is present in Java. Since the constructor of the Date class requires a long value, we need to convert the Timestamp object into a long value using the getTime() method of the TimeStamp class(present […]