Skip to content

Instantly share code, notes, and snippets.

@rosswarren
Created February 24, 2011 19:13
Show Gist options
  • Save rosswarren/842692 to your computer and use it in GitHub Desktop.
Save rosswarren/842692 to your computer and use it in GitHub Desktop.
Converts Date in Long format to Human readable
Date date = new Date();
date.setTime(--long here--);
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd-hh.mm.ss");
String formattedDate = formatter.format(date);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment