私はちょうどこの方法に出くわしました
public static Date getNowDate() {
final Calendar cal = new GregorianCalendar();
cal.setTime(new Date());
return cal.getTime();
}
次のように呼び出されます。
getNowDate().getTime()
これはただ電話するのと何か違うのですか
System.currentTimeMillis()
?