Skip to content

Instantly share code, notes, and snippets.

@smallsong
Created July 16, 2018 06:28
Show Gist options
  • Save smallsong/628e928d62671371c94dfe3be44e3c79 to your computer and use it in GitHub Desktop.
Save smallsong/628e928d62671371c94dfe3be44e3c79 to your computer and use it in GitHub Desktop.
安全获取10位时间戳
long timeStampSec = System.currentTimeMillis()/1000;
String timestamp = String.format("%010d", timeStampSec);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment