1、API層次結(jié)構(gòu):
java.text.Format
java.text.DateFormat
java.text.SimpleDateFormat
java.text.MessageFormat
java.text.NumberFormat
java.text.ChoiceFormat
java.text.DecimalFormat
我們提供的服務(wù)有:網(wǎng)站設(shè)計(jì)制作、網(wǎng)站設(shè)計(jì)、微信公眾號(hào)開(kāi)發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、城固ssl等。為1000+企事業(yè)單位解決了網(wǎng)站和推廣的問(wèn)題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的城固網(wǎng)站制作公司
主要用到粗體顯示的類(lèi)。
2、例子
import java.text.NumberFormat;
import java.text.DecimalFormat;
import java.util.Locale;
/**
@author leizhimin 2010-3-22 19:12:33
*/
public class TestNumFormat {
public static void main(String[] args) {
DecimalFormat df1 = new DecimalFormat("###.00");
System.out.println(df1.format(234234.234634));
System.out.println(df1.format(34.234634));
DecimalFormat df2 = new DecimalFormat("0.00E0000");
System.out.println(df2.format(23423.34234234));
DecimalFormat df3 = (DecimalFormat)NumberFormat.getInstance(Locale.CHINESE);
df3.applyPattern("####.000");
System.out.println(df3.format(23423.34234234));
df3.applyPattern("00.0000%");
System.out.println(df3.format(0.5552445));
NumberFormat nf1 = NumberFormat.getInstance();
System.out.println(nf1.format(13423423.234234));
NumberFormat nf2 = NumberFormat.getPercentInstance();
System.out.println(nf2.format(0.55));
}
}
輸出結(jié)果:
234234.23
34.23
2.34E0004
23423.342
55.5244%
13,423,423.234
55%
Process finished with exit code 0
如果要將帶一定格式的字符串?dāng)?shù)字轉(zhuǎn)化為數(shù)字類(lèi)型,則值需要調(diào)用格式對(duì)象的parse()方法即可。