L'heure dans la base de données est de type DateTimeObtenir l'heure
public Timestamp getDatetime() { return new Timestamp(System.currentTimeMillis()); }
Pouvez-vous le supprimer ? C'est tellement moche
Il devrait ressembler à un code similaire à Timestamp 转 String 的时候,直接调用了 Timestamp 的 toString 方法。最简单的办法就是你找到显示的地方,将 String str = timestamp.toString() est remplacé par
Timestamp
String
toString
String str = timestamp.toString()
String str = timestamp.toString(); str = str.substring(0, str.length() - 4);
Utilisez SimpleDateFormat将Timestamp转为Stringtypes.
SimpleDateFormat
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; }
Il devrait ressembler à un code similaire à
Timestamp
转String
的时候,直接调用了Timestamp
的toString
方法。最简单的办法就是你找到显示的地方,将
String str = timestamp.toString()
est remplacé parUtilisez
SimpleDateFormat
将Timestamp
转为String
types.