Use This Import.
import java.sql.Timestamp;
//Timestamp to Date Conversion
public Date timeStampToDate(Timestamp timestamp)
{
Date date = null;
try
{
date = new Date(timestamp.getTime());
return date;
}catch (Exception e) {
e.printStackTrace();
return date;
}
}
0 comments:
Post a Comment