This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package test; | |
import java.sql.Timestamp; | |
import util.CommonUtil; | |
public class TestDate { | |
public static void main(String[] args) throws Exception{ | |
java.util.Date utilDate = CommonUtil.df.parse("22/01/2015 11:52:00"); | |
Timestamp ts = new Timestamp(utilDate.getTime()); | |
System.out.println("utilDate:" + utilDate); | |
System.out.println("sql timestamp:" + ts); | |
} | |
} |