Android获取当前时间戳?
我想要这样的当前时间戳:
int time = (int) (System.currentTimeMillis());Timestamp tsTemp = new Timestamp(time);
String ts = tsTemp.toString();
回答:
解决方案是:
Long tsLong = System.currentTimeMillis()/1000;String ts = tsLong.toString();
以上是 Android获取当前时间戳? 的全部内容, 来源链接: utcz.com/qa/425131.html