Open In App

How to Convert java.sql.Date to java.util.Date in Java?

Last Updated : 04 Sep, 2021
Comments
Improve
Suggest changes
4 Likes
Like
Report

If we have the Date object of the SQL package, then we can easily convert it into an util Date object. We need to pass the getTime() method while creating the util Date object.

java.util.Date  utilDate = new java.util.Date(sqlDate.getTime());

It will give us util Date object.

getTime() method

Syntax:

public long getTime()

Parameters: The function does not accept any parameter.

Return Value: It returns the number of milliseconds since January 1, 1970, 00:00:00 GTM.

Exception: The function does not throw any exception.

Output:

utilDate:2021-01-20
sqlDate:2021-01-20

Next Article
Practice Tags :

Similar Reads