Skip to content

Instantly share code, notes, and snippets.

@trof808
Created October 18, 2019 10:39
Show Gist options
  • Save trof808/1b37b324419f6a90c3ff03a1e1e73dd7 to your computer and use it in GitHub Desktop.
Save trof808/1b37b324419f6a90c3ff03a1e1e73dd7 to your computer and use it in GitHub Desktop.
Parse timestamp into formated string
Timestamp timstamp = new Timestamp();
SimpleDateFormat formatter = new SimpleDateFormat("dd.MM.yyyy");
String parsedDate = formatter.format(new Date(timstamp.getTime()));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment