2014-05-23 59 views
0

如何打破格式爲的java,sql.Timestamp yyyy-mm-dd hh:mm:ss.fffffffff至日期和時間其中日期格式爲dd-mm-yyyy,時間爲形式爲hh:mm:ss。打破時間戳到日期和時間

我試圖做到這一點,但直到現在還沒有成功。請幫助我。

+0

請上傳您試過的代碼 – vikeng21

回答

0
Calendar c=Calendar.getInstance(); 
//If you Want Date 
java.sql.Timestamp sqlDate=resultSet.getTimestamp("dateColumn");<--From Database 
SimpleDateFormat sdf=new SimpleDateFormat("dd/MM/yyyy");//One 
System.out.println(sdf.format(sqlDate)); 
//If you Want time 
SimpleDateFormat sdf1=new SimpleDateFormat("HH:mm:SS.sss");//Two 
System.out.println(sdf1.format(sqlDate));