Ti:关于java中Date转时间戳

java中Date的getTime()方法可以用来获取13位的时间戳,该时间戳精度为毫秒级,如需转换成unix中毫秒级精度的时间戳,只需用13位时间戳除以1000。

如下代码示例

public List, Object>> obtainEnergyCost () throws ParseException {
    SimpleDateFormat format =  new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    long unixTimeStamp = format.parse(DateUtils.getCurrentTime()).getTime()/1000;
    return null;
}


你可能感兴趣的:(java)