数据格式化

java.text 包允许通过与特定语言无关的方式格式化文本消息、日期和数值。

1.    数据格式化相关类介绍

类    功能介绍

java.util.*    Locale    表示一个语言和区域的特定组合

ResourceBundle    ListResourceBundle

PropertyResourceBundle    获取本地化资源中(可以表现为类和资源文件)的信息

Calendar    GregorianCalendar    日历的支持

TimeZone    SimpleTimeZone    时区的支持

Currency    单独处理和货币相关的操作

java.text.*    Format    NumberFormat

DecimalFormat    格式化    格式化数字、货币以及百分数

ChoiceFormat        处理复数形式

DateFormat    SimpleDateFormat        日期和时间的格式化

MessageFormat             消息的格式化

DecimalFormatSymbols、DateFormatSymbols        自定义格式化中的符号集

FieldPosition        被Format及其子类用来在格式化输出中标识字段

Collator    RuleBasedCollator    字符串操作    比较字符串

CollationElementIterator        获得一个字符串中单个字符的枚举信息

CollationKey        优化比较性能

BreakIterator        获得文本中的个体信息,比如字符、单词、句子以及整行等信息

java.lang.*    Character    检查字符属性

2.    国际化及MessageFormat类

MessageFormat 运行开发者输出文本中的变量的格式,它主要用于国际化。它是一个强大的类,就像下面的例子展示的那样:

String message =

"Once upon a time ({1,date}, around about {1,time,short}), there " +

"was a humble developer named Geppetto who slaved for " +

"{0,number,integer} days with {2,number,percent} complete user " +

"requirements. ";

Object[ ] variables =

new Object[ ] { new Integer(4), new Date( ), new Double(0.21) }

String output = MessageFormat.format( message, variables );

System.out.println(output);

隐藏在信息中的是描述输出的格式的一种短小的代码,范例的输出如下:

Once upon a time (Nov 3, 2002, around about 1:35 AM), there was a humble developer named Geppetto who slaved for 4 days with 21% complete user requirements.

如果相同的信息需要被重复输出但是变量的值不同,那么创建一个MessageFormat 对象并给出信息。下面是上面的例子的修正版:

// String output = MessageFormat.format( message, variables );

// 变为:

MessageFormat formatter = new MessageFormat(message);

String output = formatter.format(variables);

除了可以处理日期、时间、数字和百分数外,MessageFormat 也可以处理货币,运行更多的数字格式的控制并且允许指定ChoiceFormat。

MessageFormat 是一个极好的类,它应该经常被使用但是现在还没有。它的最大的缺点是数据是被作为变量传递而不是一个Properties对象。一个简单的解决办法是写一个封装类,它会预解析字符串为格式化的结果,将Properties的key转换为一个数组索引,顺序是Properties.keys( )返回的顺序。

3.    数值格式化

3.1.    有关numberformat

如果您来自美国,您会在较大的数值中间放置逗号来表示千和百万(等等,每三个数值使用一个逗号)。对于浮点数,您将在整数部分和小数部分之间放置小数点。对于金钱,货币符号 $ 放在金额的前面。如果 您从来没有到过美国以外的地方,可能就不会关心用英镑(£)来格式化的英国货币,或者用欧元(?)来表示的其他欧洲国家的货币。

对于那些我们确实关心的货币,我们可以使用 NumberFormat 及其相关的类来格式化它们。开发人员使用 NumberFormat 类来读取用户输入的数值,并格式化将要显示给用户看的输出。

在Java的I/O里,并没有所谓的型别,不管是int、long、double…最後都是以String输出,所以如果要让数字以特定格式输出,需透过Java提供的两个类别java.text.NumberFormat和java.text.DecimalFormat将数字格式化後再输出。

在开始使用NumberFormat时,应先用getInstance取得NumberFormat的实体,范例12中的setMaximumIntegerDigits和setMinimumFractionDigits是用来设定整数和小数的位数,另外还有setMinimumIntegerDigits和setMaximumFractionDigits也是同样功能。这些设定如有冲突,Java以最後设定的为准。

import java.text.*;

public class myFormat {

public myFormat() {

NumberFormat nf = NumberFormat.getInstance();

double dblNum = Math.PI;

System.out.println(dblNum);

nf.setMaximumIntegerDigits(5);

nf.setMinimumFractionDigits(4);

System.out.println("PI: " + nf.format(dblNum));

}

public static void main(String[] args) {

myFormat myFormat1 = new myFormat();

}

}

与 DateFormat 类似,NumberFormat 是一个抽象类。您永远不会创建它的实例??相反, 您总是使用它的子类。虽然可以通过子类的构造函数直接创建子类,不过NumberFormat 类提供了一系列 getXXXInstance() 方法,用以获得不同类型的数值类的特定地区版本。这样的方法共有五个:

•    getCurrencyInstance()

•    getInstance()

•    getIntegerInstance()

•    getNumberInstance()

•    getPercentInstance()

具体使用哪一个方法取决于您想要显示的数值类型(或者想要接受的输入类型)。每个方法都提供了两个版本??一个版本适用于当前地区,另一个版本接受一个 Locale作为参数,以便可能地指定一个不同的地区。

使用 NumberFormat 的基本过程是获得一个实例并使用该实例。挑选恰当的实例的确需要费一番思量。通常 您不希望使用通用的 getInstance 或者 getNumberInstance() 版本,因为 您不确切知道您将会得到什么。相反,您会使用像 getIntegerInstance() 这样的方法,因为 您希望把某些内容显示为整数而不需要任何小数值。清单1展示了这一点,我们在其中把数值 54321 显示为适合于美国和德国的格式。

清单 1. 使用 NumberFormat

import java.text.*;

import java.util.*;

public class IntegerSample {

public static void main(String args[]) {

int amount = 54321;

NumberFormat usFormat =

NumberFormat.getIntegerInstance(Locale.US);

System.out.println(usFormat.format(amount));

NumberFormat germanFormat =

NumberFormat.getIntegerInstance(Locale.GERMANY);

System.out.println(germanFormat.format(amount));

}

}

运行该代码将产生如清单2所示的输出。注意第一种格式(美国)中的逗号分隔符和第二种格式中的点号分隔符。

清单 2. NumberFormat 输出

54,321

54.321

虽然 NumberFormat 是一个抽象类,并且您将通过像 getIntegerInstance() 这样的各种方法来使用它的实例,但是 DecimalFormat 类提供了该类的一个具体版本。 您可以显式地指定字符模式,用以确定如何显示正数、负数、小数和指数。如果不喜欢用于不同地区的预定义格式,您可以创建自己的格式。(在内部,或许 NumberFormat 使用的就是 DecimalFormat。)。

3.2.    使用 Currency 进行货币计算

前面提到过的 getCurrency() 和setCurrency() 方法返回新的 java.util.Currency 类的一个实例。这个类允许访问不同国家的 ISO 4217 货币代码。虽然自从 getCurrencyInstance() 引入以来您就能配合 NumberFormat 一起使用它,然而除了它们的数字显示外, 您永远不能获得或显示某个地区的货币符号。有了Currency 类,现在很容易就可以做到这一点。

正如前面提到过的,货币代码来自ISO 4217。通过传入某个国家的 Locale 或者货币的实际字母代码,Currency.getInstance() 将返回一个有效的 Currency 对象。NumberFormat 的 getCurrency() 方法将在创建特定地区的货币实例之后做同样的事情。 清单7显示了如何获得货币实例,以及如何格式化将要显示为货币的数值。记住这些转换仅用于显示。如果需要在货币之间转换金额,应该在确定如何显示值之前进行转换。

清单 7. 使用 getCurrencyInstance() 和 Currency

import java.text.*;

import java.util.*;

import java.awt.*;

import javax.swing.*;

public class CurrencySample {

public static void main(String args[]) {

StringBuffer buffer = new StringBuffer(100);

Currency dollars = Currency.getInstance("USD");

Currency pounds = Currency.getInstance(Locale.UK);

buffer.append("Dollars: ");

buffer.append(dollars.getSymbol());

buffer.append("\n");

buffer.append("Pound Sterling: ");

buffer.append(pounds.getSymbol());

buffer.append("\n-----\n");

double amount = 5000.25;

NumberFormat usFormat = NumberFormat.getCurrencyInstance(Locale.US);

buffer.append("Symbol: ");

buffer.append(usFormat.getCurrency().getSymbol());

buffer.append("\n");

buffer.append(usFormat.format(amount));

buffer.append("\n");

NumberFormat germanFormat =

NumberFormat.getCurrencyInstance(Locale.GERMANY);

buffer.append("Symbol: ");

buffer.append(germanFormat.getCurrency().getSymbol());

buffer.append("\n");

buffer.append(germanFormat.format(amount));

JFrame frame = new JFrame("Currency");

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

JTextArea ta = new JTextArea(buffer.toString());

JScrollPane pane = new JScrollPane(ta);

frame.getContentPane().add(pane, BorderLayout.CENTER);

frame.setSize(200, 200);

frame.show();

}

}

遗憾的是,为欧元或者英镑返回的货币符号不是实际的符号,而是三位的货币代码(来自 ISO 4217)。然而在使用 getCurrencyInstance() 的情况下,实际的符号将会显示出来,

3.3.    DecimalFormat

NumberFormat.getInstance()方法返回NumberFormat的一个实例(实际上是NumberFormat具体的一个子类,例如DecimalFormat), 这适合根据本地设置格式化一个数字。你也可以使用非缺省的地区设置,例如德国。然后格式化方法根据特定的地区规则格式化数字。这个程序也可以使用一个简单的形式:

NumberFormat.getInstance().format(1234.56)

但是保存一个格式然后重用更加有效。国际化是格式化数字时的一个大问题。

另一个是对格式的有效控制,例如指定小数部分的位数,下面是解决这个问题的一个简单例子:

import java.text.DecimalFormat;

import java.util.Locale;

public class DecimalFormat2 {

public static void main(String args[]) {

// 得到本地的缺省格式

DecimalFormat df1 = new DecimalFormat("####.000");

System.out.println(df1.format(1234.56));

// 得到德国的格式

Locale.setDefault(Locale.GERMAN);

DecimalFormat df2 = new DecimalFormat("####.000");

System.out.println(df2.format(1234.56));

}

}

在这个例子中设置了数字的格式,使用像"####.000"的符号。这个模式意味着在小数点前有四个数字,如果不够就空着,小数点后有三位数字,不足用0补齐。程序的输出:

1234.560

1234,560

相似的,也可以控制指数形式的格式,例如:

import java.text.DecimalFormat;

public class DecimalFormat3 {

public static void main(String args[]) {

DecimalFormat df = new DecimalFormat("0.000E0000");

System.out.println(df.format(1234.56));

}

}

输出:

1.235E0003

对于百分数:

import java.text.NumberFormat;

public class DecimalFormat4 {

public static void main(String args[]) {

NumberFormat nf = NumberFormat.getPercentInstance();

System.out.println(nf.format(0.47));

}

}

输出:

47%

至此,你已经看到了格式化数字的几个不同的技术。另一方面,如何读取并解析包含格式化的数字的字符串?解析支持包含在NumberFormat中。例如:

import java.util.Locale;

import java.text.NumberFormat;

import java.text.ParseException;

public class DecimalFormat5 {

public static void main(String args[]) {

// 本地格式

NumberFormat nf1 = NumberFormat.getInstance();

Object obj1 = null;

// 基于格式的解析

try {

obj1 = nf1.parse("1234,56");

}

catch (ParseException e1) {

System.err.println(e1);

}

System.out.println(obj1);

// 德国格式

NumberFormat nf2 =NumberFormat.getInstance(Locale.GERMAN);

Object obj2 = null;

// 基于格式的解析

try {

obj2 = nf2.parse("1234,56");

}

catch (ParseException e2) {

System.err.println(e2);

}

System.out.println(obj2);

}

}

这个例子分两部分,都是解析一个字符串:"1234,56"。第一部分使用本地格式解析,第二部分使用德国格式解析。当程序在美国运行,结果是:

123456

1234.56

换句话说,"1234,56"在美国被认为是一个巨大的整数"123456"而在德国被认为是一个小数"1234.56"。

3.4.    DecimalFormat 和 NumberFormat的联系

在上面的例子中, DecimalFormat 和 NumberFormat 都被使用了。DecimalFormat 常用于获得很好的格式控制,而NumberFormat 常用于指定不同于本地的地区。如何结合两个类呢?

答案围绕着这样的事实:DecimalFormat是NumberFormat的一个子类,其实例被指定为特定的地区。因此,你可以使用NumberFormat.getInstance 指定一个地区,然后将结构强制转换为一个DecimalFormat对象。文档中提到这个技术可以在大多情况下适用,但是你需要用try/catch 块包围强制转换以防转换不能正常工作 (大概在非常不明显得情况下使用一个奇异的地区)。下面是一个这样的例子:

import java.text.DecimalFormat;

import java.text.NumberFormat;

import java.util.Locale;

public class DecimalFormat6 {

public static void main(String args[]) {

DecimalFormat df = null;

// 得到一个NumberFormat 对象并

// 强制转换为一个 DecimalFormat 对象

try {

df = (DecimalFormat)NumberFormat.getInstance(Locale.GERMAN);

}

catch (ClassCastException e) {

System.err.println(e);

}

// 设置格式模式

df.applyPattern("####.00000");

// format a number

System.out.println(df.format(1234.56));

}

}

getInstance() 方法获得格式,然后调用applyPattern()方法设置格式模式,输出:

1234,56000

如果你不关心国际化,可以直接使用DecimalFormat 。

其中v 为未处理的double,scale为需求精度,返回需要小数位数的double

public static double round(double v,int scale){

if(scale

throw new IllegalArgumentException(

"The scale must be a positive integer or zero");

}

BigDecimal b = new BigDecimal(Double.toString(v));

BigDecimal one = new BigDecimal("1");

return b.divide(one,scale,BigDecimal.ROUND_HALF_UP).doubleValue();

}

package com.minght.sys.util;

import java.text.*;

import java.util.*;

import java.math.*;

/**

*

Title: 格式化:开源,开放

*

Description: opeansource

*

Copyright: Copyright (c) 2004

*

Company: ?海棠

* @author HaiTang Ming

* @version 1.0

*/

public class ObjectFormat {

public ObjectFormat() {

}

/**

* 将给定的数字按给定的形式输出

* @param d double

* @param pattern String

*       #:表示有数字则输出数字,没有则空,如果输出位数多于#的位数,则超长输入

*       0:有数字则输出数字,没有补0

*          对于小数,有几个#或0,就保留几位的小数;

*       例如:  "###.00" -->表示输出的数值保留两位小数,不足两位的补0,多于两位的四舍五入

*              "###.0#" -->表示输出的数值可以保留一位或两位小数;整数显示为有一位小数,一位或两位小数的按原样显示,多于两位的四舍五入;

*              "###" --->表示为整数,小数部分四舍五入

*              ".###" -->12.234显示为.234

*              "#,###.0#"  -->表示整数每隔3位加一个",";

* @param l Locale

* @return String

*/

public static String formatNumber(double d,String pattern,Locale l){

String s = "";

try{

DecimalFormat nf = (DecimalFormat) NumberFormat.getInstance(l);

nf.applyPattern(pattern);

s = nf.format(d);

}catch(Exception e){

e.printStackTrace();

Debug.println(" formatNumber is error!");

}

return s;

}

/**

* 按缺省的区域输出数字形式

* @param d double

* @param pattern String

* @return String

*/

public static String formatNumber(double d,String pattern){

return formatNumber(d,pattern,Locale.getDefault());

}

/**

* 格式化货币

* @param d double

* @param pattern String

*        "\u00A4#,###.00" :显示为 ¥1,234,234.10

* @param l Locale

* @return String

*/

public static String formatCurrency(double d,String pattern,Locale l){

String s = "";

try{

DecimalFormat nf = (DecimalFormat) NumberFormat.getCurrencyInstance(l);

nf.applyPattern(pattern);

s = nf.format(d);

}catch(Exception e){

e.printStackTrace();

Debug.println(" formatNumber is error!");

}

return s;

}

/**

* 使用默认区域的指定方式显示货币

* @param d double

* @param pattern String

* @return String

*/

public static String formatCurrency(double d,String pattern){

return formatCurrency(d,pattern,Locale.getDefault());

}

/**

* 使用默认方式显示货币:

*     例如:¥12,345.46  默认保留2位小数,四舍五入

* @param d double

* @return String

*/

public static String formatCurrency(double d){

String s = "";

try{

DecimalFormat nf = (DecimalFormat) NumberFormat.getCurrencyInstance();

s = nf.format(d);

}catch(Exception e){

e.printStackTrace();

Debug.println(" formatNumber is error!");

}

return s;

}

/**

* 按指定区域格式化百分数

* @param d

* @param pattern  :"##,##.000%"-->不要忘记“%”

* @param l

* @return

*/

public static String formatPercent(double d,String pattern,Locale l){

String s = "";

try{

DecimalFormat df = (DecimalFormat)NumberFormat.getPercentInstance(l);

df.applyPattern(pattern);

s = df.format(d);

}catch(Exception e){

Debug.print(e,"formatPercent is error!");

}

return s;

}

/**

* 使用默认区域格式化百分数

* @param d

* @param pattern

* @return

*/

public static String formatPercent(double d,String pattern){

return formatPercent(d,pattern,Locale.getDefault());

}

/**

* 格式化百分数

* @param d

* @return

*/

public static String formatPercent(double d){

String s = "";

try{

DecimalFormat df = (DecimalFormat)NumberFormat.getPercentInstance();

s = df.format(d);

}catch(Exception e){

Debug.print(e,"formatPercent is error!");

}

return s;

}

/**

* 输出数字的格式,如:1,234,567.89

* @param bd BigDecimal 要格式华的数字

* @param format String 格式 "###,##0"

* @return String

*/

public static String numberFormat(BigDecimal bd, String format) {

if (bd == null || "0".equals(bd.toString())) {

return "";

}

DecimalFormat bf = new DecimalFormat(format);

return bf.format(bd);

}

public static void main(String[] args) {

String s = formatCurrency(11123.89343,"$##,##.000");

System.out.println(s);

}

}

java.text 包允许通过与特定语言无关的方式格式化文本消息、日期和数值。

1.    数据格式化相关类介绍

类    功能介绍

java.util.*    Locale    表示一个语言和区域的特定组合

ResourceBundle    ListResourceBundle

PropertyResourceBundle    获取本地化资源中(可以表现为类和资源文件)的信息

Calendar    GregorianCalendar    日历的支持

TimeZone    SimpleTimeZone    时区的支持

Currency    单独处理和货币相关的操作

java.text.*    Format    NumberFormat

DecimalFormat    格式化    格式化数字、货币以及百分数

ChoiceFormat        处理复数形式

DateFormat    SimpleDateFormat        日期和时间的格式化

MessageFormat             消息的格式化

DecimalFormatSymbols、DateFormatSymbols        自定义格式化中的符号集

FieldPosition        被Format及其子类用来在格式化输出中标识字段

Collator    RuleBasedCollator    字符串操作    比较字符串

CollationElementIterator        获得一个字符串中单个字符的枚举信息

CollationKey        优化比较性能

BreakIterator        获得文本中的个体信息,比如字符、单词、句子以及整行等信息

java.lang.*    Character    检查字符属性

2.    国际化及MessageFormat类

MessageFormat 运行开发者输出文本中的变量的格式,它主要用于国际化。它是一个强大的类,就像下面的例子展示的那样:

String message =

"Once upon a time ({1,date}, around about {1,time,short}), there " +

"was a humble developer named Geppetto who slaved for " +

"{0,number,integer} days with {2,number,percent} complete user " +

"requirements. ";

Object[ ] variables =

new Object[ ] { new Integer(4), new Date( ), new Double(0.21) }

String output = MessageFormat.format( message, variables );

System.out.println(output);

隐藏在信息中的是描述输出的格式的一种短小的代码,范例的输出如下:

Once upon a time (Nov 3, 2002, around about 1:35 AM), there was a humble developer named Geppetto who slaved for 4 days with 21% complete user requirements.

如果相同的信息需要被重复输出但是变量的值不同,那么创建一个MessageFormat 对象并给出信息。下面是上面的例子的修正版:

// String output = MessageFormat.format( message, variables );

// 变为:

MessageFormat formatter = new MessageFormat(message);

String output = formatter.format(variables);

除了可以处理日期、时间、数字和百分数外,MessageFormat 也可以处理货币,运行更多的数字格式的控制并且允许指定ChoiceFormat。

MessageFormat 是一个极好的类,它应该经常被使用但是现在还没有。它的最大的缺点是数据是被作为变量传递而不是一个Properties对象。一个简单的解决办法是写一个封装类,它会预解析字符串为格式化的结果,将Properties的key转换为一个数组索引,顺序是Properties.keys( )返回的顺序。

3.    数值格式化

3.1.    有关numberformat

如果您来自美国,您会在较大的数值中间放置逗号来表示千和百万(等等,每三个数值使用一个逗号)。对于浮点数,您将在整数部分和小数部分之间放置小数点。对于金钱,货币符号 $ 放在金额的前面。如果 您从来没有到过美国以外的地方,可能就不会关心用英镑(£)来格式化的英国货币,或者用欧元(?)来表示的其他欧洲国家的货币。

对于那些我们确实关心的货币,我们可以使用 NumberFormat 及其相关的类来格式化它们。开发人员使用 NumberFormat 类来读取用户输入的数值,并格式化将要显示给用户看的输出。

在Java的I/O里,并没有所谓的型别,不管是int、long、double…最後都是以String输出,所以如果要让数字以特定格式输出,需透过Java提供的两个类别java.text.NumberFormat和java.text.DecimalFormat将数字格式化後再输出。

在开始使用NumberFormat时,应先用getInstance取得NumberFormat的实体,范例12中的setMaximumIntegerDigits和setMinimumFractionDigits是用来设定整数和小数的位数,另外还有setMinimumIntegerDigits和setMaximumFractionDigits也是同样功能。这些设定如有冲突,Java以最後设定的为准。

import java.text.*;

public class myFormat {

public myFormat() {

NumberFormat nf = NumberFormat.getInstance();

double dblNum = Math.PI;

System.out.println(dblNum);

nf.setMaximumIntegerDigits(5);

nf.setMinimumFractionDigits(4);

System.out.println("PI: " + nf.format(dblNum));

}

public static void main(String[] args) {

myFormat myFormat1 = new myFormat();

}

}

与 DateFormat 类似,NumberFormat 是一个抽象类。您永远不会创建它的实例??相反, 您总是使用它的子类。虽然可以通过子类的构造函数直接创建子类,不过NumberFormat 类提供了一系列 getXXXInstance() 方法,用以获得不同类型的数值类的特定地区版本。这样的方法共有五个:

•    getCurrencyInstance()

•    getInstance()

•    getIntegerInstance()

•    getNumberInstance()

•    getPercentInstance()

具体使用哪一个方法取决于您想要显示的数值类型(或者想要接受的输入类型)。每个方法都提供了两个版本??一个版本适用于当前地区,另一个版本接受一个 Locale作为参数,以便可能地指定一个不同的地区。

使用 NumberFormat 的基本过程是获得一个实例并使用该实例。挑选恰当的实例的确需要费一番思量。通常 您不希望使用通用的 getInstance 或者 getNumberInstance() 版本,因为 您不确切知道您将会得到什么。相反,您会使用像 getIntegerInstance() 这样的方法,因为 您希望把某些内容显示为整数而不需要任何小数值。清单1展示了这一点,我们在其中把数值 54321 显示为适合于美国和德国的格式。

清单 1. 使用 NumberFormat

import java.text.*;

import java.util.*;

public class IntegerSample {

public static void main(String args[]) {

int amount = 54321;

NumberFormat usFormat =

NumberFormat.getIntegerInstance(Locale.US);

System.out.println(usFormat.format(amount));

NumberFormat germanFormat =

NumberFormat.getIntegerInstance(Locale.GERMANY);

System.out.println(germanFormat.format(amount));

}

}

运行该代码将产生如清单2所示的输出。注意第一种格式(美国)中的逗号分隔符和第二种格式中的点号分隔符。

清单 2. NumberFormat 输出

54,321

54.321

虽然 NumberFormat 是一个抽象类,并且您将通过像 getIntegerInstance() 这样的各种方法来使用它的实例,但是 DecimalFormat 类提供了该类的一个具体版本。 您可以显式地指定字符模式,用以确定如何显示正数、负数、小数和指数。如果不喜欢用于不同地区的预定义格式,您可以创建自己的格式。(在内部,或许 NumberFormat 使用的就是 DecimalFormat。)。

3.2.    使用 Currency 进行货币计算

前面提到过的 getCurrency() 和setCurrency() 方法返回新的 java.util.Currency 类的一个实例。这个类允许访问不同国家的 ISO 4217 货币代码。虽然自从 getCurrencyInstance() 引入以来您就能配合 NumberFormat 一起使用它,然而除了它们的数字显示外, 您永远不能获得或显示某个地区的货币符号。有了Currency 类,现在很容易就可以做到这一点。

正如前面提到过的,货币代码来自ISO 4217。通过传入某个国家的 Locale 或者货币的实际字母代码,Currency.getInstance() 将返回一个有效的 Currency 对象。NumberFormat 的 getCurrency() 方法将在创建特定地区的货币实例之后做同样的事情。 清单7显示了如何获得货币实例,以及如何格式化将要显示为货币的数值。记住这些转换仅用于显示。如果需要在货币之间转换金额,应该在确定如何显示值之前进行转换。

清单 7. 使用 getCurrencyInstance() 和 Currency

import java.text.*;

import java.util.*;

import java.awt.*;

import javax.swing.*;

public class CurrencySample {

public static void main(String args[]) {

StringBuffer buffer = new StringBuffer(100);

Currency dollars = Currency.getInstance("USD");

Currency pounds = Currency.getInstance(Locale.UK);

buffer.append("Dollars: ");

buffer.append(dollars.getSymbol());

buffer.append("\n");

buffer.append("Pound Sterling: ");

buffer.append(pounds.getSymbol());

buffer.append("\n-----\n");

double amount = 5000.25;

NumberFormat usFormat = NumberFormat.getCurrencyInstance(Locale.US);

buffer.append("Symbol: ");

buffer.append(usFormat.getCurrency().getSymbol());

buffer.append("\n");

buffer.append(usFormat.format(amount));

buffer.append("\n");

NumberFormat germanFormat =

NumberFormat.getCurrencyInstance(Locale.GERMANY);

buffer.append("Symbol: ");

buffer.append(germanFormat.getCurrency().getSymbol());

buffer.append("\n");

buffer.append(germanFormat.format(amount));

JFrame frame = new JFrame("Currency");

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

JTextArea ta = new JTextArea(buffer.toString());

JScrollPane pane = new JScrollPane(ta);

frame.getContentPane().add(pane, BorderLayout.CENTER);

frame.setSize(200, 200);

frame.show();

}

}

遗憾的是,为欧元或者英镑返回的货币符号不是实际的符号,而是三位的货币代码(来自 ISO 4217)。然而在使用 getCurrencyInstance() 的情况下,实际的符号将会显示出来,

3.3.    DecimalFormat

NumberFormat.getInstance()方法返回NumberFormat的一个实例(实际上是NumberFormat具体的一个子类,例如DecimalFormat), 这适合根据本地设置格式化一个数字。你也可以使用非缺省的地区设置,例如德国。然后格式化方法根据特定的地区规则格式化数字。这个程序也可以使用一个简单的形式:

NumberFormat.getInstance().format(1234.56)

但是保存一个格式然后重用更加有效。国际化是格式化数字时的一个大问题。

另一个是对格式的有效控制,例如指定小数部分的位数,下面是解决这个问题的一个简单例子:

import java.text.DecimalFormat;

import java.util.Locale;

public class DecimalFormat2 {

public static void main(String args[]) {

// 得到本地的缺省格式

DecimalFormat df1 = new DecimalFormat("####.000");

System.out.println(df1.format(1234.56));

// 得到德国的格式

Locale.setDefault(Locale.GERMAN);

DecimalFormat df2 = new DecimalFormat("####.000");

System.out.println(df2.format(1234.56));

}

}

在这个例子中设置了数字的格式,使用像"####.000"的符号。这个模式意味着在小数点前有四个数字,如果不够就空着,小数点后有三位数字,不足用0补齐。程序的输出:

1234.560

1234,560

相似的,也可以控制指数形式的格式,例如:

import java.text.DecimalFormat;

public class DecimalFormat3 {

public static void main(String args[]) {

DecimalFormat df = new DecimalFormat("0.000E0000");

System.out.println(df.format(1234.56));

}

}

输出:

1.235E0003

对于百分数:

import java.text.NumberFormat;

public class DecimalFormat4 {

public static void main(String args[]) {

NumberFormat nf = NumberFormat.getPercentInstance();

System.out.println(nf.format(0.47));

}

}

输出:

47%

至此,你已经看到了格式化数字的几个不同的技术。另一方面,如何读取并解析包含格式化的数字的字符串?解析支持包含在NumberFormat中。例如:

import java.util.Locale;

import java.text.NumberFormat;

import java.text.ParseException;

public class DecimalFormat5 {

public static void main(String args[]) {

// 本地格式

NumberFormat nf1 = NumberFormat.getInstance();

Object obj1 = null;

// 基于格式的解析

try {

obj1 = nf1.parse("1234,56");

}

catch (ParseException e1) {

System.err.println(e1);

}

System.out.println(obj1);

// 德国格式

NumberFormat nf2 =NumberFormat.getInstance(Locale.GERMAN);

Object obj2 = null;

// 基于格式的解析

try {

obj2 = nf2.parse("1234,56");

}

catch (ParseException e2) {

System.err.println(e2);

}

System.out.println(obj2);

}

}

这个例子分两部分,都是解析一个字符串:"1234,56"。第一部分使用本地格式解析,第二部分使用德国格式解析。当程序在美国运行,结果是:

123456

1234.56

换句话说,"1234,56"在美国被认为是一个巨大的整数"123456"而在德国被认为是一个小数"1234.56"。

3.4.    DecimalFormat 和 NumberFormat的联系

在上面的例子中, DecimalFormat 和 NumberFormat 都被使用了。DecimalFormat 常用于获得很好的格式控制,而NumberFormat 常用于指定不同于本地的地区。如何结合两个类呢?

答案围绕着这样的事实:DecimalFormat是NumberFormat的一个子类,其实例被指定为特定的地区。因此,你可以使用NumberFormat.getInstance 指定一个地区,然后将结构强制转换为一个DecimalFormat对象。文档中提到这个技术可以在大多情况下适用,但是你需要用try/catch 块包围强制转换以防转换不能正常工作 (大概在非常不明显得情况下使用一个奇异的地区)。下面是一个这样的例子:

import java.text.DecimalFormat;

import java.text.NumberFormat;

import java.util.Locale;

public class DecimalFormat6 {

public static void main(String args[]) {

DecimalFormat df = null;

// 得到一个NumberFormat 对象并

// 强制转换为一个 DecimalFormat 对象

try {

df = (DecimalFormat)NumberFormat.getInstance(Locale.GERMAN);

}

catch (ClassCastException e) {

System.err.println(e);

}

// 设置格式模式

df.applyPattern("####.00000");

// format a number

System.out.println(df.format(1234.56));

}

}

getInstance() 方法获得格式,然后调用applyPattern()方法设置格式模式,输出:

1234,56000

如果你不关心国际化,可以直接使用DecimalFormat 。

其中v 为未处理的double,scale为需求精度,返回需要小数位数的double

public static double round(double v,int scale){

if(scale

throw new IllegalArgumentException(

"The scale must be a positive integer or zero");

}

BigDecimal b = new BigDecimal(Double.toString(v));

BigDecimal one = new BigDecimal("1");

return b.divide(one,scale,BigDecimal.ROUND_HALF_UP).doubleValue();

}

package com.minght.sys.util;

import java.text.*;

import java.util.*;

import java.math.*;

/**

*

Title: 格式化:开源,开放

*

Description: opeansource

*

Copyright: Copyright (c) 2004

*

Company: ?海棠

* @author HaiTang Ming

* @version 1.0

*/

public class ObjectFormat {

public ObjectFormat() {

}

/**

* 将给定的数字按给定的形式输出

* @param d double

* @param pattern String

*       #:表示有数字则输出数字,没有则空,如果输出位数多于#的位数,则超长输入

*       0:有数字则输出数字,没有补0

*          对于小数,有几个#或0,就保留几位的小数;

*       例如:  "###.00" -->表示输出的数值保留两位小数,不足两位的补0,多于两位的四舍五入

*              "###.0#" -->表示输出的数值可以保留一位或两位小数;整数显示为有一位小数,一位或两位小数的按原样显示,多于两位的四舍五入;

*              "###" --->表示为整数,小数部分四舍五入

*              ".###" -->12.234显示为.234

*              "#,###.0#"  -->表示整数每隔3位加一个",";

* @param l Locale

* @return String

*/

public static String formatNumber(double d,String pattern,Locale l){

String s = "";

try{

DecimalFormat nf = (DecimalFormat) NumberFormat.getInstance(l);

nf.applyPattern(pattern);

s = nf.format(d);

}catch(Exception e){

e.printStackTrace();

Debug.println(" formatNumber is error!");

}

return s;

}

/**

* 按缺省的区域输出数字形式

* @param d double

* @param pattern String

* @return String

*/

public static String formatNumber(double d,String pattern){

return formatNumber(d,pattern,Locale.getDefault());

}

/**

* 格式化货币

* @param d double

* @param pattern String

*        "\u00A4#,###.00" :显示为 ¥1,234,234.10

* @param l Locale

* @return String

*/

public static String formatCurrency(double d,String pattern,Locale l){

String s = "";

try{

DecimalFormat nf = (DecimalFormat) NumberFormat.getCurrencyInstance(l);

nf.applyPattern(pattern);

s = nf.format(d);

}catch(Exception e){

e.printStackTrace();

Debug.println(" formatNumber is error!");

}

return s;

}

/**

* 使用默认区域的指定方式显示货币

* @param d double

* @param pattern String

* @return String

*/

public static String formatCurrency(double d,String pattern){

return formatCurrency(d,pattern,Locale.getDefault());

}

/**

* 使用默认方式显示货币:

*     例如:¥12,345.46  默认保留2位小数,四舍五入

* @param d double

* @return String

*/

public static String formatCurrency(double d){

String s = "";

try{

DecimalFormat nf = (DecimalFormat) NumberFormat.getCurrencyInstance();

s = nf.format(d);

}catch(Exception e){

e.printStackTrace();

Debug.println(" formatNumber is error!");

}

return s;

}

/**

* 按指定区域格式化百分数

* @param d

* @param pattern  :"##,##.000%"-->不要忘记“%”

* @param l

* @return

*/

public static String formatPercent(double d,String pattern,Locale l){

String s = "";

try{

DecimalFormat df = (DecimalFormat)NumberFormat.getPercentInstance(l);

df.applyPattern(pattern);

s = df.format(d);

}catch(Exception e){

Debug.print(e,"formatPercent is error!");

}

return s;

}

/**

* 使用默认区域格式化百分数

* @param d

* @param pattern

* @return

*/

public static String formatPercent(double d,String pattern){

return formatPercent(d,pattern,Locale.getDefault());

}

/**

* 格式化百分数

* @param d

* @return

*/

public static String formatPercent(double d){

String s = "";

try{

DecimalFormat df = (DecimalFormat)NumberFormat.getPercentInstance();

s = df.format(d);

}catch(Exception e){

Debug.print(e,"formatPercent is error!");

}

return s;

}

/**

* 输出数字的格式,如:1,234,567.89

* @param bd BigDecimal 要格式华的数字

* @param format String 格式 "###,##0"

* @return String

*/

public static String numberFormat(BigDecimal bd, String format) {

if (bd == null || "0".equals(bd.toString())) {

return "";

}

DecimalFormat bf = new DecimalFormat(format);

return bf.format(bd);

}

public static void main(String[] args) {

String s = formatCurrency(11123.89343,"$##,##.000");

System.out.println(s);

}

}


相关内容

  • 国内地面.气象辐射.酸雨观测数据BUFR编码格式编制说明
  • 附件10: 国内地面.气象辐射.酸雨观测数据BUFR 编码格式编制说明 1.格式使用范围 本标准格式规定了国内固定陆地测站的地面分钟.小时和日观测资料,气象辐射站分钟.小时观测资料,酸雨日观测资料,地面自动站运行状态和设备信息.地面台站元数据的编码格式.编报规则和代码. 本标准格式适用于国内固定陆地 ...

  • 南方电网输电线路监测系统通信规约(V1版)
  • 南方电网输电线路监测系统通信规约 (V1版) 中国南方电网公司 二○○九年六月 广州 适用范围 本规约规定了输电线路在线监测终端与主站系统通信的一般约定.数据帧格式.控制字定义及格式.数据结构及传输规则,适用于南方电网输电线路灾害(覆冰)预警系统. 一般约定 1) 监测终端在线监测数据量 序号 监测 ...

  • 面向电子政务的数据交换平台设计
  • 面向电子政务的数据交换平台 设计方案 目录 一.电子政务概述 ....................................................................................................................... ...

  • 多媒体数据库的发展认识
  • 多媒体数据库技术的发展认识 随着近时代电子计算机的诞生,我们的工作.生活发生了革命性的变化,特别是近几年,计算机行业一次次的飞跃是我们亲身体会的,如多媒体产生而带来的巨大影响. 多媒体正以全新的方式在众多领域中得到广泛应用,为广大用户提供了丰富多彩的信息服务,其涉及的应用领域主要有办公室自动化.教育 ...

  • 遥感图像的数据格式
  • 遥感图像的数据格式 2009-08-14 13:59 多波段图像具有空间的位置和光谱的信息.多波段图像的数据格式根据在二维空间的像元配置中如何存贮各种波段的信息而分为以下几类 (1)BSQ 格式(band sequential) 各波段的二维图像数据按波段顺序排列. (((像元号顺序),行号顺序), ...

  • 电脑所有文件后缀名扩展名大全
  • 常见的文件后缀名 ACA Microsoft的代理使用的角色文档 acf 系统管理配置 acm 音频压缩管理驱动程序,为Windows系统提供各种声音格式的编码和解码功能 aif 声音文件,支持压缩,可以使用Windows Media Player和QuickTime Player播放 AIF 音频 ...

  • 润乾报表简单使用
  • 1 润乾报表的安装 .................................................................................... 2 1.1 3.5.5版本 ......................................... ...

  • 计算机财务管理期末考报表部分题目及答案.
  • 报表模块 单选题 1. 在UFO 报表系统中可以完成的操作不包含______. A .设计报表格式 B .插入图表 C .文档编辑 D .数据计算 答案:C 难易程度:2 章节:报表概述 2. 在U8报表系统中,格式状态与数据状态切换的快捷方式是______. A .Ctrl+G B .Ctrl+D ...

  • [永久基本农田数据库成果汇交要求](2017版)
  • 附件3 永久基本农田数据库成果汇交要求(2017版) 根据<永久基本农田数据库标准>(2017版)(以下简称<标准>),结合各地永久基本农田数据库建设的实际情况,对原有基本农田数据库成果汇交要求进行修订(调整内容见附录),内容如下: 一.数据内容和数据格式 以县为基本组织单元 ...

  • 图像文件格式
  • 目录 i. ii. iii. iv. PNG 便携式网络图形(Portable Network Graphics,PNG )是一种无损压缩的位图图形格式,支持索引.灰度.RGB [A]三种颜色方案以及Alpha 通道等特性.PNG 的开发目标是改善并取代GIF 作为适合网络传输的格式而不需专利许可, ...