Skip to content

Instantly share code, notes, and snippets.

@eivoePh
Created June 5, 2018 06:36
Show Gist options
  • Save eivoePh/ecd85bd67e2b8a1ee4d74b53be897950 to your computer and use it in GitHub Desktop.
Save eivoePh/ecd85bd67e2b8a1ee4d74b53be897950 to your computer and use it in GitHub Desktop.
DateTimeFormatter格式化Date
Date date = new Date();
String format = DateTimeFormatter
.ofPattern("yyyy-MM-dd HH:mm:ss")
.format(date.toInstant().atZone(ZoneId.systemDefault()));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment