字符串转化为Timestamp

SimpleDateFormat 这个时间格式化的类
可以 时间->字符串,也可以 字符串-> 时间.
 
import java.sql.Timestamp; 
import java.text.Format;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date; 

public class Format {
    public static void main(String[] args) {
        try { 
            String time = "2012-02-21T13:21:59";
            Format f = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
            Date d = f.parse(time);
            Timestamp ts = new Timestamp(d.getTime());
            System.out.println(ts);
        } catch (ParseException e) {
            e.printStackTrace();
        }
    }
}

你可能感兴趣的:(Timestamp)