,即此代码
startDate = new Date(timestampValue.getTime));
给我 :
2012-16-02 05:16:17
什么时候
System.out.println(timestampValue);
返回:
2012-01-02 05:16:17.0
最佳答案
您应该改为使用Calendar:
Calendar start = Calendar.getInstance();
start.setTimeInMillis( timeStampValue.getTime() );