Skip to content

Instantly share code, notes, and snippets.

@pkozelka
Created September 20, 2011 11:56
Show Gist options
  • Save pkozelka/1228934 to your computer and use it in GitHub Desktop.
Save pkozelka/1228934 to your computer and use it in GitHub Desktop.
convert Date into ISO-formatted string
class DateToIso {
/**
* This uses java formatter for the conversion
*/
public String toString(Date date) {
return String.format("%tFT%<tT.%<tL", date);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment