获取当前时间戳,单位秒和单位毫秒
答:
单位秒:
public static long getCurrentTimestamp() {
return System.currentTimeMillis()/1000;
}
单位毫秒:
public static long getCurrentTimestampMs() {
return System.currentTimeMillis();
}
本文链接:http://www.yayihouse.com/yayishuwu/chapter/1475