Java四舍五入 和 数字的格式化

 import java.math.BigDecimal;  
 import java.math.MathContext;  
 import java.math.RoundingMode;  
  
 public class BigDec {  
     public static void main(String[] args){  
         //      四舍五入方法  
        MathContext v = new MathContext(5,RoundingMode.HALF_DOWN);  
        BigDecimal a = new BigDecimal("0.87234643298346",v);  
         System.out.println(a);  
   
           
     }  
   
   }  
 

 

继承关系: 
java.lang.Object 
      |__ java.text.Format 
             
 |__java.text.NumberFormat 
                      |__ 
java.text.DecimalFormat 
    public class DecimalFormatextends 
NumberFormatDecimalFormat 
是 NumberFormat 
的一个具体子类,用于格式化十进制数字。该类设计有各种功能,使其能够解析和格式化任意语言环境中的数,包括对西方语言、阿拉伯语和印度语数字的支持。它
还支持不同类型的数,包括整数 (123)、定点数 (123.4)、科学记数法表示的数 (1.23E4)、百分数 (12%) 和金额 
($123)。所有这些内容都可以本地化。 

要获取具体语言环境的 NumberFormat(包括默认语言环境),可调用 
NumberFormat 的某个工厂方法,如 getInstance()。通常不直接调用 DecimalFormat 的构造方法,因为 
NumberFormat 的工厂方法可能返回不同于 DecimalFormat 的子类。如果需要自定义格式对象,可执行: 

NumberFormat
 f = NumberFormat.getInstance(loc); 
if (f instanceof DecimalFormat) {
 
((DecimalFormat) f).setDecimalSeparatorAlwaysShown(true); 
} 
DecimalFormat
 包含一个模式 和一组符号。可直接使用 applyPattern() 或间接使用 API 方法来设置模式。符号存储在 
DecimalFormatSymbols 对象中。使用 NumberFormat 工厂方法时,可从已本地化的 ResourceBundle 
中读取模式和符号。 


例如:
Java代码
  1. import  java.text.*;  
  2. import  java.util.*;  
  3. public   class  DecimalFormatSample {  
  4.  public   static   void  main(String args[]) {   
  5.   //使用系统默认的格式   
  6.   DecimalFormat myformat1 = new  DecimalFormat( "###,###.0000" );  
  7.   System.out.println(myformat1.format(111111123456.12 ));  
  8.   Locale.setDefault(Locale.US);  
  9.   
  10.   //使用美国的格式   
  11.   DecimalFormat myformat2 = new  DecimalFormat( "###,###.0000" );  
  12.   System.out.println(myformat2.format(111111123456.12 ));  
  13.           
  14.    
  15.   //----------also use applypattern------------------------//   
  16.   DecimalFormat myformat3 = new  DecimalFormat();  
  17.   myformat3.applyPattern("##,###.000" );  
  18.   System.out.println(myformat3.format(11112345.12345 ));  
  19.   
  20.   
  21.   //-----------------控制指数输出 ---------------------------//   
  22.   DecimalFormat myformat4 = new  DecimalFormat();  
  23.   myformat4.applyPattern("0.000E0000" );  
  24.   System.out.println(myformat4.format(10000 ));  
  25.   System.out.println(myformat4.format(12345678.345 ));  
  26.   
  27.   
  28.   //------------------百分数的输出 ---------------------------//   
  29.   /*  DecimalFormat是NumberFormat的一个子类,其实例被指定 为特定的地区。因此,你可以 使用NumberFormat.getInstance   
  30. 指定一个地区,然后将结构强制转换为一个DecimalFormat对象。文档中提到这个技术 可以在大多情况下适用,但 是你需要用  
  31. try/catch 块包围强制 转换以防转换不能正常工作 (大概在非常不明显得情况下使用一个奇异的地区)。    */   
  32.   
  33.   DecimalFormat myformat5 = null ;  
  34.   try {  
  35.       myformat5 = (DecimalFormat)NumberFormat.getPercentInstance();  
  36.   }catch (ClassCastException e)  
  37.   {  
  38.    System.err.println(e);   
  39.   }  
  40.   myformat5.applyPattern("00.0000%" );  
  41.   System.out.println(myformat5.format(0.34567 ));  
  42.   System.out.println(myformat5.format(1.34567 ));  
  43.          
  44.    
  45.  }  

import java.text.*; import java.util.*; public class DecimalFormatSample { public static void main(String args[]) { //使用系统默认的格式 DecimalFormat myformat1 = new DecimalFormat("###,###.0000"); System.out.println(myformat1.format(111111123456.12)); Locale.setDefault(Locale.US); //使用美国的格式 DecimalFormat myformat2 = new DecimalFormat("###,###.0000"); System.out.println(myformat2.format(111111123456.12)); //----------also use applypattern------------------------// DecimalFormat myformat3 = new DecimalFormat(); myformat3.applyPattern("##,###.000"); System.out.println(myformat3.format(11112345.12345)); //-----------------控制指数输出---------------------------// DecimalFormat myformat4 = new DecimalFormat(); myformat4.applyPattern("0.000E0000"); System.out.println(myformat4.format(10000)); System.out.println(myformat4.format(12345678.345)); //------------------百分数的输出---------------------------// /* DecimalFormat是NumberFormat的一个子类,其实例被指定为特定的地区。因此,你可以使用 NumberFormat.getInstance 指定一个地区,然后将结构强制转换为一个DecimalFormat对象。文档中提到这个技术可以在大多情况下适用,但是你需要用 try/catch 块包围强制转换以防转换不能正常工作 (大概在非常不明显得情况下使用一个奇异的地区)。 */ DecimalFormat myformat5 = null; try{ myformat5 = (DecimalFormat)NumberFormat.getPercentInstance(); }catch(ClassCastException e) { System.err.println(e); } myformat5.applyPattern("00.0000%"); System.out.println(myformat5.format(0.34567)); System.out.println(myformat5.format(1.34567)); }

/*---------------------------运行结果------------------------- //
命令:java DecimalFormatSample
结果:
111,111,123,456.1200
111,111,123,456.1200
11,112,345.123
1.000E0004
1.235E0007
34.5670%
134.5670%
*/
}

你可能感兴趣的:(java,设计模式,工作,F#)