在C中可以使用类似printf(“%d %8.2f\n”, 1001, 52.335)的方法实现格式化输出,可是Java中的System.out.println()并没有对应的功能。要格式化输出,必须使用java.text包中的类来实现类似的操作(要不怎么体现面向对象的优越性呢,不过据说jdk1.5准备又补上)。当然了,java.text包的功能还是很强大的,奇怪的是很多书中都没有涉及,而一般谁又有工夫整天去看API?
注意:由于这里说得很简略,因此请参照下面的Demo程序。
格式化数字
在NumberFormat类中为我们提供了格式化4种数字的方法:整数、小数、货币和百分比,通过工厂方法getNumberInstance, getNumberIntance, getCurrencyInstance, getPercentInstance方法获得相应的实例对象就行。例如我们要以字符串表示人民币88888.88元,这样来写就行:
NumberFormat nf = NumberFormat.getCurrencyInstance();
System.out.println(nf.format(88888.88));
定制格式化数字
可是对于稍微复杂一点的需求,NumberFormat就满足不了了,幸好java还提供了DecimalFormat实现定制的格式化。要使用DecimalFormat对象,必须提供给它提供一个格式化的模式(pattern):
String pattern = …
DecimalFormat df = new DecimalFormat(pattern);
或者:
DecimalFormat df = new DecimalFormat();
df. applyPattern(pattern);
然后就调用它的format方法就行了。
所以关键就是这个模式怎么定义。在DecimalFormat类的JavaDoc中有模式的语法表示,不过很难说清楚(是我说不清楚,呵呵),请看看Demo自己多试试吧。下面是模式中某些字符的含义表:
字符 |
含义 |
0 |
一位数字,这一位缺失显示为0。用来补零 |
# |
一位数字, 这一位缺失就不显示 |
. |
小数点,不用多说了吧 |
, |
千位分隔符 |
E |
科学计数法 |
% |
百分比 |
格式化日期
把日期转化为字符串最简单的方法就是调用Date类的toString或者toLocaleString方法:
System.out.println(new Date());
输出:2004-8-7 8:16:14。可是如果我们想把月和日补成2位不要时分秒2004-08-07,这就不灵了。java.text.DateFormat提供了大量的工厂方法:getDateInstance(int style), getTimeInstance(int style), getDateTimeInstance(int dateStyle, int timeStyle)等等。其中style必须是DateFormat.LONG, DateFormat.MEDIUM, DateFormat.SHORT之一。Demo中的defaultDateFormat方法作了一个简单的实验。
定制格式化日期:
同样,java.text.SimpleDateFormat可以通过模式(pattern)实现定制格式化:
String pattern = …
SimpleDateFormat df = new SimpleDateFormat(pattern);
或者:
SimpleDateFormat df = new SimpleDateFormat();
df. applyPattern(pattern);
下面是SimpleDateFormat的javadoc中的一个模式符号简表:
符号 |
意义 |
合法数值 |
示例 |
y |
Year |
1996; 96 |
|
M |
Month in year |
July; Jul; 07 |
|
d |
Day in month |
10 |
|
a |
Am/pm marker |
PM |
|
H |
Hour in day (0-23) |
0 |
|
h |
Hour in am/pm (1-12) |
12 |
|
m |
Minute in hour |
30 |
|
s |
Second in minute |
55 |
|
S |
Millisecond |
978 |
|
z |
Time zone |
Pacific Standard Time; PST; GMT-08:00 |
|
Z |
Time zone |
-0800 |
注意的是,符号的大小写意义是不同的,符号的个数也会导致输出不一样。例如用MM就会把1月份显示成01,而用M则不会补零。对于年份,两个yy会只输出两位年份,yyyy则会输出4位年份。
实际上,上面的类还提供了很多其他方法,特别是用于本地化(Locale)定制格式化的方法,以及从字符串表示转化为相应对象的parse方法,还有把格式化结果附加到一个StringBuffer的方法(应该是用来提高性能)。
最后是一个小Demo和输出结果:
TestFormat.java:
import java.text.*;
import java.util.*;
public class TestFormat {
public static void main(String[] args) {
defaultNumberFormat();
System.out.println();
customNumberFormat();
System.out.println();
defaultDateFormat();
System.out.println();
customDateFormat();
System.out.println();
}
public static void defaultNumberFormat() {
int i = 123456;
double x = 882323.23523;
double p = 0.528;
double c = 52.83;
NumberFormat nf = NumberFormat.getInstance();
System.out.println("Integer " + i + " is displayed as " + nf.format(i));
System.out.println("Double " + x + " is displayed as " + nf.format(x));
NumberFormat nfInt = NumberFormat.getIntegerInstance();
System.out.println("Integer " + i + " is displayed as " + nfInt.format(i));
NumberFormat nfNumber = NumberFormat.getNumberInstance();
System.out.println("Double " + x + " is displayed as " + nfNumber.format(x));
NumberFormat nfPercent = NumberFormat.getPercentInstance();
System.out.println("Percent " + p + " is displayed as " + nfPercent.format(p));
NumberFormat nfCurrency = NumberFormat.getCurrencyInstance();
System.out.println("Currency " + p + " is displayed as " + nfCurrency.format(c));
//这里没有涉及相应的parse方法
}
public static void customNumberFormat() {