Maison  >  Article  >  Java  >  4 façons de conserver deux décimales en Java

4 façons de conserver deux décimales en Java

一个新手
一个新手original
2017-10-10 09:24:043550parcourir

4 façons de conserver deux décimales en Java

Méthode 1 : méthode de formatage de chaîne (recommandée)

double f = 111231.5585;
System.out.println(String.format("%.2f", f));

Méthode 2 : méthode de formatage DecimalFormat

double f = 111231.5585;
DecimalFormat df = new DecimalFormat("#.00");            
System.out.println(df.format(f));

Comprenez simplement le contenu suivant, vous n'avez pas besoin de lire

Méthode trois : méthode setScale de BigDecimal

double f = 111231.5585;
BigDecimal bg = new BigDecimal(f);            
double f1 = bg.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();            
System.out.println(f1);

Méthode quatre : méthode setMaximumFractionDigits de NumberFormat

double f = 111231.5585;
NumberFormat nf = NumberFormat.getNumberInstance();            
nf.setMaximumFractionDigits(2);            
System.out.println(nf.format(f));

code :


 1 import java.math.BigDecimal; 
 2     import java.text.DecimalFormat; 
 3     import java.text.NumberFormat; 
 4     public class format { 
 5         double f = 111231.5585; 
 6         public void m1() { 
 7             BigDecimal bg = new BigDecimal(f); 
 8             double f1 = bg.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue(); 
 9             System.out.println(f1);
 10         }
 11         /**
 12          * DecimalFormat转换最简便
 13          */
 14         public void m2() {
 15             DecimalFormat df = new DecimalFormat("#.00");
 16             System.out.println(df.format(f));
 17         }
 18         /**1
 9          * String.format打印最简便
 20          */
 21         public void m3() {
 22             System.out.println(String.format("%.2f", f));
 23         }
 24         public void m4() {
 25             NumberFormat nf = NumberFormat.getNumberInstance();
 26             nf.setMaximumFractionDigits(2);
 27             System.out.println(nf.format(f));
 28         }
 29         public static void main(String[] args) {
 30             format f = new format();
 31             f.m1();
 32             f.m2();
 33             f.m3();
 34             f.m4();
 35         }
 36     }

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn