Java中計算百分比(DecimalFormat是NumberFormat的一個具體子類,用於格式化十進位制數字)

ZHOU_VIP發表於2018-10-15
public String getPercent(int x,int total){  
	   String result="";//接受百分比的值  
	   double x_double=x*1.0;  
	   double tempresult=x/total;  
	   //NumberFormat nf   =   NumberFormat.getPercentInstance();     註釋掉的也是一種方法  
	   //nf.setMinimumFractionDigits( 2 );        保留到小數點後幾位  
	   DecimalFormat df1 = new DecimalFormat("0.00%");    //##.00%   百分比格式,後面不足2位的用0補齊  
	   //result=nf.format(tempresult);     
	   result= df1.format(tempresult);    
	   return result;  
} 

https://blog.csdn.net/shehun11/article/details/42141923

https://blog.csdn.net/lyh147406/article/details/76165947

https://blog.csdn.net/u011106915/article/details/75361276

https://blog.csdn.net/u014704879/article/details/41479399/

DecimalForma函式預設的四捨五入的方法是銀行家演算法。跟一般的四捨五入的方法不同。

銀行家演算法:四捨六入五考慮,五後非零就進一,五後為零看奇偶,五前為偶應捨去,五前為奇要進一。

DecimalFormat 提供 RoundingMode 中定義的舍入模式進行格式化。預設情況下,它使用 RoundingMode.HALF_EVEN,

要想實現正常的四捨五入,需要呼叫decimalFormat.setRoundingMode(RoundingMode.HALF_UP)方法實現四捨五入。


 

相關文章