在Java中获取“unixtime”
2022-08-31 05:14:19
Date.getTime() 返回自 1970 年 1 月 1 日起的毫秒。Unixtime是自1970年1月1日以来的秒。我通常不用java编写代码,但我正在做一些错误修复。我有:
Date now = new Date();
Long longTime = new Long(now.getTime()/1000);
return longTime.intValue();
有没有更好的方法来获得java中的unixtime?