fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.text.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. double resultado= 93.13502;
  13. Locale.setDefault(Locale.US);
  14. DecimalFormat format = new DecimalFormat("###,###.0");
  15. System.out.println(format.format(resultado)); // 93.1
  16.  
  17. // se mudar o locale, o DecimalFormat muda sua config
  18. Locale.setDefault(new Locale("pt", "BR"));
  19. format = new DecimalFormat("###,###.0");
  20. System.out.println(format.format(resultado)); //93,1
  21.  
  22. // mas vc pode usar um com locale específico, sem depender do default
  23. Locale.setDefault(Locale.US);
  24. NumberFormat nf = NumberFormat.getNumberInstance(new Locale("pt", "BR"));
  25. DecimalFormat formatter = (DecimalFormat) nf;
  26. formatter.applyPattern("###,###.0");
  27. System.out.println(formatter.format(resultado)); //93,1
  28. }
  29. }
Success #stdin #stdout 0.08s 34628KB
stdin
Standard input is empty
stdout
93.1
93,1
93,1