byodian / all-in-github

Manage All Personal Data with Github
https://all-in-github-byodian.vercel.app
MIT License
2 stars 0 forks source link

Snippets #23

Open byodian opened 5 months ago

byodian commented 5 months ago

13位字符串时间戳转换为 yyyy-MM-dd HH:mm:ss:SSS 格式

String timeMillis = "1703657099752";
long time = Long.parseLong(timeMillis);
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS");
String timeStr =  formatter.format(time);
System.out.println(timeStr);