我已經嘗試了不同的方法在網絡上,但無法使其工作。在兩個日期之間的Android差異在幾秒鐘內
Cursor cursor = sqlite.myDataBase.rawQuery("SELECT StartDate, EndDate FROM Tracks Where Id="+'"'+trackId+'"',null);
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date startDate = outputFormat.parse(cursor.getString(cursor.getColumnIndex("StartDate")));
Date endDate = outputFormat.parse(cursor.getString(cursor.getColumnIndex("EndDate")));
以這種方式,我得到了兩個日期格式良好的日期。現在我想在幾秒鐘內找到EndDate
和Startdate
之間的區別。
有什麼建議嗎?謝謝。