Home > Java > javaTutorial > 4 ways to retain two decimal places in java

4 ways to retain two decimal places in java

一个新手
Release: 2017-10-10 09:24:04
Original
3709 people have browsed it

4 ways to keep two decimal places in java

Method 1: String format method (recommended)

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

Method 2: DecimalFormat format method

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

The following content Just understand it, you don’t need to read it

Method three: BigDecimal’s setScale method

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

Method four: NumberFormat’s setMaximumFractionDigits method

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

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     }
Copy after login

The above is the detailed content of 4 ways to retain two decimal places in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Install JAVA
From 1970-01-01 08:00:00
0
0
0
Unable to install java
From 1970-01-01 08:00:00
0
0
0
Can java be used as the backend of the web?
From 1970-01-01 08:00:00
0
0
0
Is this in Java language?
From 1970-01-01 08:00:00
0
0
0
Help: JAVA encrypted data PHP decryption
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template