Skip to content

Instantly share code, notes, and snippets.

@team172011
Last active September 5, 2020 10:07
Show Gist options
  • Save team172011/797cfb2503c7a1c54db2030227d01fe4 to your computer and use it in GitHub Desktop.
Save team172011/797cfb2503c7a1c54db2030227d01fe4 to your computer and use it in GitHub Desktop.
java.time.ZonedDateTime to java.util.Date
java.time.ZonedDateTime myZonedDateTime = java.time.ZonedDateTime.now();
java.util.Date date = java.util.Date.from(myZonedDateTime.toInstant());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment