如何在Mysql DB中保存我的日期,在我使用的代码下面,保存位置,重复x时间。
但现在我需要保存日期,我尝试在代码片段中显示。
这是更新我的代码。
totalNumDupRemoved
非常感谢
答案 0 :(得分:1)
这是日期代码
private String getDateTime() {
SimpleDateFormat dateFormat = new SimpleDateFormat(
"yyyy-MM-dd HH:mm:ss", Locale.getDefault());
Date date = new Date();
return dateFormat.format(date);
}
此代码用于放入请求
parameters.put("date", getDateTime());