Heim > Fragen und Antworten > Hauptteil
Die Zeit in der Datenbank ist vom Typ DateTime.
Holen Sie sich die Zeit
public Timestamp getDatetime() {
return new Timestamp(System.currentTimeMillis());
}
Kannst du es entfernen? Es ist so hässlich
大家讲道理2017-06-23 09:16:23
看起来应该是在 Timestamp
转 String
的时候,直接调用了 Timestamp
的 toString
方法。
最简单的办法就是你找到显示的地方,将 String str = timestamp.toString()
类似的代码改为
String str = timestamp.toString();
str = str.substring(0, str.length() - 4);
代言2017-06-23 09:16:23
使用SimpleDateFormat
将Timestamp
转为String
类型。
public Timestamp getDatetime() {
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Timestamp now = new Timestamp(System.currentTimeMillis());
String str = df.format(now);
return str;
}