1. 程式人生 > >解決TimeStamp 欄位輸出到頁面多餘‘.0’問題

解決TimeStamp 欄位輸出到頁面多餘‘.0’問題

Timestamp time= new Timestamp(System.currentTimeMillis());//獲取系統當前時間   
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");  
String timeStr = df.format(time);   
System.out.println(timeStr);