Skip to content

Instantly share code, notes, and snippets.

@gigenthomas
Created December 6, 2016 03:57
Show Gist options
  • Select an option

  • Save gigenthomas/bdcf4c93a2beebd5e33259ebd00b4d85 to your computer and use it in GitHub Desktop.

Select an option

Save gigenthomas/bdcf4c93a2beebd5e33259ebd00b4d85 to your computer and use it in GitHub Desktop.
UTC to Date
====
LocalDateTime ldt = LocalDateTime.now(Clock.systemUTC());
Instant instant = ldt.toInstant(ZoneOffset.UTC);
Date now = Date.from(instant);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment