Skip to content

Instantly share code, notes, and snippets.

@paulomcnally
Created August 27, 2012 08:39
Show Gist options
  • Save paulomcnally/3486712 to your computer and use it in GitHub Desktop.
Save paulomcnally/3486712 to your computer and use it in GitHub Desktop.
Get real date from Nicaragua - Android
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd", Locale.US);
sdf.setTimeZone(TimeZone.getTimeZone( "America/Managua" ));
String now = sdf.format(new Date());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment