Skip to content

Instantly share code, notes, and snippets.

@benelog
Created September 17, 2012 04:33
Show Gist options
  • Save benelog/3735565 to your computer and use it in GitHub Desktop.
Save benelog/3735565 to your computer and use it in GitHub Desktop.
JavaTime
private Date getNowGmt() {
TimeZone gmt = TimeZone.getTimeZone("GMT");
Calendar calendar = Calendar.getInstance(gmt);
return calendar.getTime();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment