我把mysql的日期時間字段讀入一個字符串,例如比較得到java和mysql之間的秒差datetime
String arriveTime = rs1.getString("arriveTime");
下一步我設法用java是像我從MySQL得到了類似的格式顯示當前日期和時間。
DateFormat outDf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String currentDateTimer=null;
Date date = Calendar.getInstance().getTime();
currentDateTimer=outDf.format(date);
我該如何減去currentDateTime和arrivalTime以獲得以秒爲單位的淨結果。我寧願純粹通過java來完成它
'select unix_timestamp() - unix_timestamp(yourfield)' – 2014-08-28 18:09:37
_get the net results in seconds_?給你一個你想要的例子:) – 2014-08-28 18:10:54
你可以添加'arriveTime'的格式嗎? – Jens 2014-08-28 18:11:29