答案 0 :(得分:1)
使用JodaTime或Java 8的Time API(或其他专用库)
LocalDateTime now = LocalDateTime.now(ZoneOffset.UTC);
LocalDateTime then = LocalDateTime.of(1970, Month.JANUARY, 1, 0, 0);
Duration duration = Duration.between(then, now);
System.out.println(duration.toDays());
哪个输出
16748
答案 1 :(得分:0)
一般的想法可以是
现在将1.中获得的值除以2的值。 这将为您提供天数。