Tuesday 16 April 2013

Timestamp to Date Conversion In Java

Leave a Comment
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