Format Timestamp : Date Time Timestamp « Database SQL JDBC « Java






Format Timestamp

   
import java.sql.Timestamp;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class Util{
  public static Timestamp formatTimestamp(Timestamp datetime) {
    try {
      DateFormat formatter;
      String dateFormat = datetime.toString();
      System.out.println("Truoc:"+ datetime);
      formatter = new SimpleDateFormat("dd/MM/yyyy");
      Date date = (Date) formatter.parse(dateFormat);      
      java.sql.Timestamp timeStampDate = new Timestamp(date.getTime());
      System.out.println("Sau:"+ timeStampDate);
      return timeStampDate;
    } catch (ParseException e) {
      System.out.println("Exception :" + e);
      return null;
    }
  }
}

   
    
    
  








Related examples in the same category

1.Convert java.sql.Timestamp to long for easy compare
2.Get Date From MySql
3.Get java.sql.Timestamp fro current time
4.Get date from Oracle
5.Insert Date, time and date time data to Oracle
6.Construct java.sql.Timestamp from string
7.Demo PreparedStatement Set Time
8.Demo PreparedStatement Set Timestamp
9.Demo PreparedStatement Set Date
10.Compare two times
11.Convert an Object to a DateTime, without an Exception
12.Convert an Object to a Timestamp, without an Exception
13.Convert an Object to a java.sql.Time
14.Timestamp parse
15.Parse date and time
16.convert Strings to Dates and Timestamps and vice versa.
17.Convert into java.sql.Time (or into java.util.Calendar)
18.A method to get the current date and time to use in a timestamp
19.A method to get the current date to use in a timestamp
20.Get today's Timestamp
21.Convert String To Timestamp
22.Convert a timestamp (= millisecs) to a concise string
23.Get Date stamp