Maison > Questions et réponses > le corps du texte
L'heure dans la base de données est de type DateTime
Obtenir l'heure
public Timestamp getDatetime() {
return new Timestamp(System.currentTimeMillis());
}
Pouvez-vous le supprimer ? C'est tellement moche
大家讲道理2017-06-23 09:16:23
Il devrait ressembler à un code similaire à Timestamp
转 String
的时候,直接调用了 Timestamp
的 toString
方法。
最简单的办法就是你找到显示的地方,将 String str = timestamp.toString()
est remplacé par
String str = timestamp.toString();
str = str.substring(0, str.length() - 4);
代言2017-06-23 09:16:23
Utilisez SimpleDateFormat
将Timestamp
转为String
types.
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;
}