獲取當前時間,並將其轉換成Date格式
阿新 • • 發佈:2020-12-08
技術標籤:其它
public boolean addComment(Comment comment) {
//先建立一個空的Date物件
Date date=new Date();
//設定好SimpleDateFormat的格式
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//獲取當前時間,此時時間的格式為String
String source = df.format(date);
try {
//將String型別轉換成Date形式
Date dd = df.parse(source);
//以下為資料庫操作
//將Date型別存入vo
comment.setCommentTime(dd);
//插入物件
int i = cm.insert(comment)
if(i>0){
return true;
}
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}