Skip to content

Instantly share code, notes, and snippets.

@yenerm
Created June 16, 2020 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yenerm/f291f5e682ee3a033de83fc7b03588f1 to your computer and use it in GitHub Desktop.
Save yenerm/f291f5e682ee3a033de83fc7b03588f1 to your computer and use it in GitHub Desktop.
LocalDate and LocalTime
// Current date
LocalDate date = LocalDate.now();
// Current time
LocalTime time = LocalTime.now();
// Date of Android 11 beta launch
LocalDate date2 = LocalDate.of(2020, 6, 10); //yyyy,MM,dd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment