Skip to content

Instantly share code, notes, and snippets.

@armstrongnate
Created April 24, 2014 04:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save armstrongnate/11241653 to your computer and use it in GitHub Desktop.
Save armstrongnate/11241653 to your computer and use it in GitHub Desktop.
java string formatting
// formatting numbers
// => "1.2"
String.format("%s", new DecimalFormat("#.##").format(1.2))
// => "1.20"
String.format("%.2f", 1.2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment