我的代碼:使用日期,而不是時間戳
Calendar calendar = DateProvider.getCalendarInstance(TimeZone.getTimeZone("GMT"));
calendar.setTime(date);
calendar.set(Calendar.YEAR, 1970);
calendar.set(Calendar.MONTH, Calendar.JANUARY);
calendar.set(Calendar.DATE, 1);
date = calendar.getTime();
Timestamp epochTimeStamp = new Timestamp(date.getTime());
我想消除在這種情況下使用時間戳,如何能實現與epochTimeStamp這裏同樣的事情,而無需使用的java.sql.Timestamp?我需要的格式與我使用Timestamp時相同。
如果你正在談論寫日期的'String'表示的格式,你應該使用'SimpleDateFormat'來代替。 –
你在做什麼與時間戳? – jalynn2
當你說你「需要格式相同」時,我們不知道你的意思。你能澄清一下嗎? – pamphlet