我想像这样获取当前时间戳:1320917972
I want to get the current timestamp like that : 1320917972
int time = (int) (System.currentTimeMillis());
Timestamp tsTemp = new Timestamp(time);
String ts = tsTemp.toString();
解决办法是:
Long tsLong = System.currentTimeMillis()/1000;
String ts = tsLong.toString();
这篇关于Android获取当前时间戳?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!