Date.getTime()返回自1970年1月1日以来的毫秒数。Unixtime是自1970年1月1日以来的秒数。我有:
Date now = new Date();
Long longTime = new Long(now.getTime()/1000);
return longTime.intValue();
有没有更好的方法来在Java中获取unixtime?
更新
根据John M的建议,我最终得到:
return (int) (System.currentTimeMillis() / 1000L);
动漫人物
相关分类