public final class Formatter extends Object implements Closeable, Flushable
byte
, BigDecimal
和Calendar
都支持。
通过Formattable
接口提供了用于任意用户类型的限制格式化定制。
对于多线程访问,格式化器不一定是安全的。 线程安全是可选的,是本课程中用户的责任。
Java语言的格式化打印受到C的printf
极大启发。 虽然格式字符串类似于C,但是已经进行了一些自定义以适应Java语言并利用其一些功能。 此外,Java格式化比C更严格; 例如,如果转换与标志不兼容,将抛出异常。 在C中,不适用的标志被忽略。 因此,格式字符串旨在被C程序员识别,但不一定完全与C中的那些完全兼容。
预期用途示例:
StringBuilder sb = new StringBuilder(); // Send all output to the Appendable object sb Formatter formatter = new Formatter(sb, Locale.US); // Explicit argument indices may be used to re-order output. formatter.format("%4$2s %3$2s %2$2s %1$2s", "a", "b", "c", "d") // -> " d c b a" // Optional locale as the first argument can be used to get // locale-specific formatting of numbers. The precision and width can be // given to round and align the value. formatter.format(Locale.FRANCE, "e = %+10.4f", Math.E); // -> "e = +2,7183" // The '(' numeric flag may be used to format negative numbers with // parentheses rather than a minus sign. Group separators are // automatically inserted. formatter.format("Amount gained or lost since last statement: $ %(,.2f", balanceDelta); // -> "Amount gained or lost since last statement: $ (6,217.58)"
存在通用格式化请求的方便方法,如以下调用所示:
// Writes a formatted string to System.out. System.out.format("Local time: %tT", Calendar.getInstance()); // -> "Local time: 13:34:18" // Writes formatted output to System.err. System.err.printf("Unable to open file '%1$s': %2$s", fileName, exception.getMessage()); // -> "Unable to open file 'food': No such file or directory"
像C的sprintf(3)
,字符串可能使用静态方法String.format
进行格式化 :
// Format a string containing a date. import java.util.Calendar; import java.util.GregorianCalendar; import static java.util.Calendar.*; Calendar c = new GregorianCalendar(1995, MAY, 23); String s = String.format("Duke's Birthday: %1$tb %1$te, %1$tY", c); // -> s == "Duke's Birthday: May 23, 1995"
本规范分为两部分。 第一部分, Summary ,涵盖了基本的格式化概念。 本节适用于想要快速入门并熟悉其他编程语言格式化打印的用户。 第二部分, Details ,具体实现细节。 它适用于希望更精确地规定格式化行为的用户。
本节旨在提供格式化概念的简要概述。 有关精确的行为细节,请参阅Details部分。
产生格式化输出的每种方法都需要格式字符串和参数列表 。 格式字符串是一个String
,它可能包含固定文本和一个或多个嵌入式格式说明符 。 请考虑以下示例:
此格式字符串是Calendar c = ...; String s = String.format("Duke's Birthday: %1$tm %1$te,%1$tY", c);
format
方法的第一个参数。
它包含三个格式说明符“ %1$tm
”,“ %1$te
”和“ %1$tY
”,它们指示如何处理参数以及应在文本中插入它们。
格式字符串的其余部分是固定文本,包括"Dukes Birthday: "
和任何其他空格或标点符号。
参数列表由传递给格式字符串后的方法的所有参数组成。
在上面的例子中,参数列表大小为1,由Calendar
对象c
。
%[argument_index$][flags][width][.precision]conversion
argument_index是一个十进制整数,表示参数在参数列表中的位置。 第一个参数为“ 1$
”,第二个为“ 2$
”等。
可选标志是修改输出格式的一组字符。 该组有效标志取决于转换。
可选的宽度是一个正十进制整数,表示要写入输出的最小字符数。
可选精度是通常用于限制字符数的非负十进制整数。 具体行为取决于转换。
所需的转换是一个字符,指示参数应如何格式化。 给定参数的一组有效转换取决于参数的数据类型。
%[argument_index$][flags][width]conversion
argument_index , flags和width的可选参数如上所述。
所需的转换是两个字符的顺序。 第一个字符是't'
或'T'
。 第二个字符表示要使用的格式。 这些字符与GNU date
和POSIX strftime(3c)
所定义的相似但不strftime(3c)
。
%[flags][width]conversion
可选标志和宽度如上定义。
所需的转换是指示要插入输出的内容的字符。
转换分为以下几类:
char
, Character
, byte
, Byte
, short
和Short
。 这种转换也可以被施加到所述类型int
和Integer
时Character.isValidCodePoint(int)
返回true
byte
, Byte
, short
, Short
, int
和Integer
, long
, Long
和BigInteger
(但不包括char
和Character
) float
, Float
, double
, Double
和BigDecimal
long
, Long
, Calendar
, Date
和TemporalAccessor
'%'
( '\u0025' ) 下表总结了支持的转换。 通过一个大写字符标记转换(即'B'
, 'H'
, 'S'
, 'C'
, 'X'
, 'E'
, 'G'
, 'A'
和'T'
)相同的那些相应的小写转换字符除了将结果转换成上情况按照当时的规则Locale
。 结果相当于以下调用String.toUpperCase()
out.toUpperCase()
Conversion Argument Category Description 'b'
, 'B'
general If the argument arg is null
, then the result is "false
". If arg is a boolean
or Boolean
, then the result is the string returned by String.valueOf(arg)
. Otherwise, the result is "true". 'h'
, 'H'
general If the argument arg is null
, then the result is "null
". Otherwise, the result is obtained by invoking Integer.toHexString(arg.hashCode())
. 's'
, 'S'
general If the argument arg is null
, then the result is "null
". If arg implements Formattable
, then arg.formatTo
is invoked. Otherwise, the result is obtained by invoking arg.toString()
. 'c'
, 'C'
character The result is a Unicode character 'd'
integral The result is formatted as a decimal integer 'o'
integral The result is formatted as an octal integer 'x'
, 'X'
integral The result is formatted as a hexadecimal integer 'e'
, 'E'
floating point The result is formatted as a decimal number in computerized scientific notation 'f'
floating point The result is formatted as a decimal number 'g'
, 'G'
floating point The result is formatted using computerized scientific notation or decimal format, depending on the precision and the value after rounding. 'a'
, 'A'
floating point The result is formatted as a hexadecimal floating-point number with a significand and an exponent. This conversion is not supported for the BigDecimal
type despite the latter's being in the floating point argument category. 't'
, 'T'
date/time Prefix for date and time conversion characters. See Date/Time Conversions. '%'
percent The result is a literal '%'
('\u0025') 'n'
line separator The result is the platform-specific line separator
任何未明确定义为转换的字符都是非法的,并保留给将来的扩展。
为't'
和'T'
转换定义了以下日期和时间转换后缀字符。 类型与GNU date
和POSIX strftime(3c)
所定义的类似但不strftime(3c)
。 提供额外的转换类型(例如访问特定Java的功能'L'
内的第二对毫秒)。
以下转换字符用于格式化时间:
'H'
Hour of the day for the 24-hour clock, formatted as two digits with a leading zero as necessary i.e. 00 - 23
. 'I'
Hour for the 12-hour clock, formatted as two digits with a leading zero as necessary, i.e. 01 - 12
. 'k'
Hour of the day for the 24-hour clock, i.e. 0 - 23
. 'l'
Hour for the 12-hour clock, i.e. 1 - 12
. 'M'
Minute within the hour formatted as two digits with a leading zero as necessary, i.e. 00 - 59
. 'S'
Seconds within the minute, formatted as two digits with a leading zero as necessary, i.e. 00 - 60
("60
" is a special value required to support leap seconds). 'L'
Millisecond within the second formatted as three digits with leading zeros as necessary, i.e. 000 - 999
. 'N'
Nanosecond within the second, formatted as nine digits with leading zeros as necessary, i.e. 000000000 - 999999999
. 'p'
Locale-specific morning or afternoon marker in lower case, e.g."am
" or "pm
". Use of the conversion prefix 'T'
forces this output to upper case. 'z'
RFC 822 style numeric time zone offset from GMT, e.g. -0800
. This value will be adjusted as necessary for Daylight Saving Time. For long
, Long
, and Date
the time zone used is the default time zone for this instance of the Java virtual machine. 'Z'
A string representing the abbreviation for the time zone. This value will be adjusted as necessary for Daylight Saving Time. For long
, Long
, and Date
the time zone used is the default time zone for this instance of the Java virtual machine. The Formatter's locale will supersede the locale of the argument (if any). 's'
Seconds since the beginning of the epoch starting at 1 January 1970 00:00:00
UTC, i.e. Long.MIN_VALUE/1000
to Long.MAX_VALUE/1000
. 'Q'
Milliseconds since the beginning of the epoch starting at 1 January 1970 00:00:00
UTC, i.e. Long.MIN_VALUE
to Long.MAX_VALUE
.
以下转换字符用于格式化日期:
'B'
Locale-specific full month name, e.g. "January"
, "February"
. 'b'
Locale-specific abbreviated month name, e.g. "Jan"
, "Feb"
. 'h'
Same as 'b'
. 'A'
Locale-specific full name of the day of the week, e.g. "Sunday"
, "Monday"
'a'
Locale-specific short name of the day of the week, e.g. "Sun"
, "Mon"
'C'
Four-digit year divided by 100
, formatted as two digits with leading zero as necessary, i.e. 00 - 99
'Y'
Year, formatted as at least four digits with leading zeros as necessary, e.g. 0092
equals 92
CE for the Gregorian calendar. 'y'
Last two digits of the year, formatted with leading zeros as necessary, i.e. 00 - 99
. 'j'
Day of year, formatted as three digits with leading zeros as necessary, e.g. 001 - 366
for the Gregorian calendar. 'm'
Month, formatted as two digits with leading zeros as necessary, i.e. 01 - 13
. 'd'
Day of month, formatted as two digits with leading zeros as necessary, i.e. 01 - 31
'e'
Day of month, formatted as two digits, i.e. 1 - 31
.
以下转换字符用于格式化常用日期/时间合成。
'R'
Time formatted for the 24-hour clock as "%tH:%tM"
'T'
Time formatted for the 24-hour clock as "%tH:%tM:%tS"
. 'r'
Time formatted for the 12-hour clock as "%tI:%tM:%tS %Tp"
. The location of the morning or afternoon marker ('%Tp'
) may be locale-dependent. 'D'
Date formatted as "%tm/%td/%ty"
. 'F'
ISO 8601 complete date formatted as "%tY-%tm-%td"
. 'c'
Date and time formatted as "%ta %tb %td %tT %tZ %tY"
, e.g. "Sun Jul 20 16:17:00 EDT 1969"
.
任何未明确定义为日期/时间转换后缀的字符都是非法的,并保留给将来的扩展名。
下表总结了支持的标志。 y表示指定的参数类型支持该标志。
Flag General Character Integral Floating Point Date/Time Description '-' y y y y y The result will be left-justified. '#' y1 - y3 y - The result should use a conversion-dependent alternate form '+' - - y4 y - The result will always include a sign ' ' - - y4 y - The result will include a leading space for positive values '0' - - y y - The result will be zero-padded ',' - - y2 y5 - The result will include locale-specific grouping separators '(' - - y4 y5 - The result will enclose negative numbers in parentheses 1取决于Formattable
的定义 。
2仅用于'd'
转换。
3对于'o'
, 'x'
和'X'
仅转换。
4对于'd'
, 'o'
, 'x'
和'X'
施加到转换BigInteger
或'd'
施加到byte
, Byte
, short
, Short
, int
和Integer
, long
和Long
。
5对于'e'
, 'E'
, 'f'
, 'g'
和'G'
只有转换。
任何未明确定义为标志的字符都是非法的,并保留给将来的扩展名。
宽度是要写入输出的最小字符数。 对于行分隔符转换,宽度不适用; 如果提供,将抛出异常。
对于一般参数类型,精度是要写入输出的最大字符数。
对于浮点转换'a'
, 'A'
, 'e'
, 'E'
和'f'
精度的小数点后的位数。 如果转换为'g'
或'G'
,则精度是'g'
后产生的幅度的总位数。
对于字符,积分和日期/时间参数类型以及百分比和行分隔符转换,精度不适用; 如果提供精度,将抛出异常。
参数index是一个十进制整数,表示参数在参数列表中的位置。 第一个参数为“ 1$
”,第二个为“ 2$
”等。
通过位置引用参数的另一种方法是使用'<'
( '\u003c' )标志,这将导致重新使用先前格式说明符的参数。 例如,以下两个语句将产生相同的字符串:
Calendar c = ...; String s1 = String.format("Duke's Birthday: %1$tm %1$te,%1$tY", c); String s2 = String.format("Duke's Birthday: %1$tm %<te,%<tY", c);
本节旨在提供格式化的行为细节,包括条件和异常,支持的数据类型,本地化以及标志,转换和数据类型之间的交互。 有关格式化概念的概述,请参阅Summary
未明确定义为转换,日期/时间转换后缀或标志的任何字符都是非法的,并保留给将来的扩展名。 在格式字符串中使用这样的字符将导致抛出UnknownFormatConversionException
或UnknownFormatFlagsException
。
如果格式说明符含有无效值的宽度或精度,否则不支持,则将分别引用IllegalFormatWidthException
或IllegalFormatPrecisionException
。
如果格式说明符包含不适用于相应参数的转换字符,则将抛出IllegalFormatConversionException
。
所有指定的异常可通过任何的抛出format
的方法Formatter
以及通过任何format
方便的方法,如String.format
和PrintStream.printf
。
通过一个大写字符标记转换(即'B'
, 'H'
, 'S'
, 'C'
, 'X'
, 'E'
, 'G'
, 'A'
和'T'
)相同的那些相应的小写转换字符除了将结果转换成上情况按照现行规定Locale
。 结果相当于以下调用String.toUpperCase()
out.toUpperCase()
以下一般转换可能适用于任何参数类型:
'b'
'\u0062' Produces either "true
" or "false
" as returned by Boolean.toString(boolean)
. If the argument is null
, then the result is "false
". If the argument is a boolean
or Boolean
, then the result is the string returned by String.valueOf()
. Otherwise, the result is "true
".
If the '#'
flag is given, then a FormatFlagsConversionMismatchException
will be thrown.
'B'
'\u0042' The upper-case variant of 'b'
. 'h'
'\u0068' Produces a string representing the hash code value of the object. If the argument, arg is null
, then the result is "null
". Otherwise, the result is obtained by invoking Integer.toHexString(arg.hashCode())
.
If the '#'
flag is given, then a FormatFlagsConversionMismatchException
will be thrown.
'H'
'\u0048' The upper-case variant of 'h'
. 's'
'\u0073' Produces a string. If the argument is null
, then the result is "null
". If the argument implements Formattable
, then its formatTo
method is invoked. Otherwise, the result is obtained by invoking the argument's toString()
method.
If the '#'
flag is given and the argument is not a Formattable
, then a FormatFlagsConversionMismatchException
will be thrown.
'S'
'\u0053' The upper-case variant of 's'
.
下面flags适用于常规转换:
'-'
'\u002d' Left justifies the output. Spaces ('\u0020') will be added at the end of the converted value as required to fill the minimum width of the field. If the width is not provided, then a MissingFormatWidthException
will be thrown. If this flag is not given then the output will be right-justified. '#'
'\u0023' Requires the output use an alternate form. The definition of the form is specified by the conversion.
width是要写入输出的最小字符数。 如果转换的值的长度小于宽度,则输出将被填充' ' ( '\u0020' ),直到总字符数等于宽度。 默认情况下,填充在左侧。 如果给出了'-'
标志,则填充将在右侧。 如果没有指定宽度,则没有最小值。
精度是写入输出的最大字符数。 在宽度之前应用精度,因此即使宽度大于精度,输出也将被截断为precision
个字符。 如果未指定精度,则对字符数没有明确的限制。
char
和Character
。
它也可以被施加到类型byte
, Byte
, short
和Short
, int
和Integer
时Character.isValidCodePoint(int)
返回true
。
如果它返回false
那么将抛出一个IllegalFormatCodePointException
。
'c'
'\u0063' Formats the argument as a Unicode character as described in Unicode Character Representation. This may be more than one 16-bit char
in the case where the argument represents a supplementary character. If the '#'
flag is given, then a FormatFlagsConversionMismatchException
will be thrown.
'C'
'\u0043' The upper-case variant of 'c'
.
适用于General conversions的'-'
标志。 如果给出'#'
标志,那么FormatFlagsConversionMismatchException
将被抛出。
宽度定义为General conversions 。
精度不适用。 如果指定精度,则会抛出IllegalFormatPrecisionException
。
数字转换分为以下几类:
数字类型将根据以下算法进行格式化:
在获得整数部分,小数部分和指数(适用于数据类型)的数字后,应用以下转换:
'0'
+ z 。 ','
('\u002c') flag给出,那么语言环境的特定grouping separator通过在由区域设置的规定的时间间隔扫描所述字符串从至少显著到最显著位数的整数部分和插入的隔板插入grouping size 。 '0'
标志,那么在符号字符(如果有的话)和第一个非零数字之前插入特定于区域的zero digits ,直到字符串的长度等于所请求的字段宽度。 '('
标志被给出,那么'('
('\u0028')被前置和')'
('\u0029')将被附加。 '('
标志,那么将添加一个'-'
( '\u002d' )。 '+'
标志,并且值为正或零(或浮点正零),那么将会添加一个'+'
( '\u002b' )。 如果值为NaN或正无穷大,则将输出文字字符串“NaN”或“Infinity”。 如果值为负无穷大,则如果给出'('
标志,则输出将为“(无穷大”), '('
输出将为“-Infinity”。 这些值不是本地化的。
Byte, Short, Integer, and Long
以下转换可以应用于byte
, Byte
, short
, Short
, int
和Integer
, long
和Long
。
'd'
'\u0064' Formats the argument as a decimal integer. The localization algorithm is applied. If the '0'
flag is given and the value is negative, then the zero padding will occur after the sign.
If the '#'
flag is given then a FormatFlagsConversionMismatchException
will be thrown.
'o'
'\u006f' Formats the argument as an integer in base eight. No localization is applied. If x is negative then the result will be an unsigned value generated by adding 2n to the value where n
is the number of bits in the type as returned by the static SIZE
field in the Byte, Short, Integer, or Long classes as appropriate.
If the '#'
flag is given then the output will always begin with the radix indicator '0'
.
If the '0'
flag is given then the output will be padded with leading zeros to the field width following any indication of sign.
If '('
, '+'
, ' ', or ','
flags are given then a FormatFlagsConversionMismatchException
will be thrown.
'x'
'\u0078' Formats the argument as an integer in base sixteen. No localization is applied. If x is negative then the result will be an unsigned value generated by adding 2n to the value where n
is the number of bits in the type as returned by the static SIZE
field in the Byte, Short, Integer, or Long classes as appropriate.
If the '#'
flag is given then the output will always begin with the radix indicator "0x"
.
If the '0'
flag is given then the output will be padded to the field width with leading zeros after the radix indicator or sign (if present).
If '('
, ' ', '+'
, or ','
flags are given then a FormatFlagsConversionMismatchException
will be thrown.
'X'
'\u0058' The upper-case variant of 'x'
. The entire string representing the number will be converted to upper case including the 'x'
(if any) and all hexadecimal digits 'a'
- 'f'
('\u0061' - '\u0066').
如果转换是'o'
, 'x'
,或'X'
和两个'#'
和'0'
标志,那么结果将包含(基数指示符'0'
为八进制和"0x"
或"0X"
为十六进制)时,一些数量的零(基于宽度) ,和价值。
如果没有给出'-'
标志,则空格填充将发生在符号之前。
下面flags适用于数字积分转换:
'+'
'\u002b' Requires the output to include a positive sign for all positive numbers. If this flag is not given then only negative values will include a sign. If both the '+'
and ' ' flags are given then an IllegalFormatFlagsException
will be thrown.
If both the '+'
and ' ' flags are given then an IllegalFormatFlagsException
will be thrown.
'0'
'\u0030' Requires the output to be padded with leading zeros to the minimum field width following any sign or radix indicator except when converting NaN or infinity. If the width is not provided, then a MissingFormatWidthException
will be thrown. If both the '-'
and '0'
flags are given then an IllegalFormatFlagsException
will be thrown.
','
'\u002c' Requires the output to include the locale-specific group separators as described in the "group" section of the localization algorithm. '('
'\u0028' Requires the output to prepend a '('
('\u0028') and append a ')'
('\u0029') to negative values.
如果没有flags给出的默认格式如下:
width
'-'
( '\u002d' )开头 width是要写入输出的最小字符数。 这包括任何符号,数字,分组分隔符,基数指示符和括号。 如果转换值的长度小于宽度,则输出将被空格( '\u0020' )填充,直到字符的总数等于宽度。 默认情况下,填充在左侧。 如果'-'
标志,则填充将在右侧。 如果没有指定width,那么没有最小值。
精度不适用。 如果指定精度,则会抛出IllegalFormatPrecisionException
。
以下转换可能适用于BigInteger
。
'd'
'\u0064' Requires the output to be formatted as a decimal integer. The localization algorithm is applied. If the '#'
flag is given FormatFlagsConversionMismatchException
will be thrown.
'o'
'\u006f' Requires the output to be formatted as an integer in base eight. No localization is applied. If x is negative then the result will be a signed value beginning with '-'
('\u002d'). Signed output is allowed for this type because unlike the primitive types it is not possible to create an unsigned equivalent without assuming an explicit data-type size.
If x is positive or zero and the '+'
flag is given then the result will begin with '+'
('\u002b').
If the '#'
flag is given then the output will always begin with '0'
prefix.
If the '0'
flag is given then the output will be padded with leading zeros to the field width following any indication of sign.
If the ','
flag is given then a FormatFlagsConversionMismatchException
will be thrown.
'x'
'\u0078' Requires the output to be formatted as an integer in base sixteen. No localization is applied. If x is negative then the result will be a signed value beginning with '-'
('\u002d'). Signed output is allowed for this type because unlike the primitive types it is not possible to create an unsigned equivalent without assuming an explicit data-type size.
If x is positive or zero and the '+'
flag is given then the result will begin with '+'
('\u002b').
If the '#'
flag is given then the output will always begin with the radix indicator "0x"
.
If the '0'
flag is given then the output will be padded to the field width with leading zeros after the radix indicator or sign (if present).
If the ','
flag is given then a FormatFlagsConversionMismatchException
will be thrown.
'X'
'\u0058' The upper-case variant of 'x'
. The entire string representing the number will be converted to upper case including the 'x'
(if any) and all hexadecimal digits 'a'
- 'f'
('\u0061' - '\u0066').
如果转换是'o'
, 'x'
,或'X'
和两个'#'
和'0'
标志,那么结果将包含(基座指示器'0'
为八进制和"0x"
或"0X"
为十六进制)时,一些数量的零(基于宽度) ,和价值。
如果给出了'0'
标志,并且该值为负值,则零填充将发生在符号之后。
如果没有给出'-'
标志,则空格填充将发生在符号之前。
所有flags为Byte,Short,Integer和Long定义。 default behavior当没有给出标志与Byte,Short,Integer和Long相同。
width的规范与字节,短,整数和长度相同。
精度不适用。 如果指定精度,则会抛出IllegalFormatPrecisionException
。
以下转换可以应用于float
, Float
, double
和Double
。
'e'
'\u0065' Requires the output to be formatted using computerized scientific notation. The localization algorithm is applied. The formatting of the magnitude m depends upon its value.
If m is NaN or infinite, the literal strings "NaN" or "Infinity", respectively, will be output. These values are not localized.
If m is positive-zero or negative-zero, then the exponent will be "+00"
.
Otherwise, the result is a string that represents the sign and magnitude (absolute value) of the argument. The formatting of the sign is described in the localization algorithm. The formatting of the magnitude m depends upon its value.
Let n be the unique integer such that 10n <= m < 10n+1; then let a be the mathematically exact quotient of m and 10n so that 1 <= a < 10. The magnitude is then represented as the integer part of a, as a single decimal digit, followed by the decimal separator followed by decimal digits representing the fractional part of a, followed by the exponent symbol 'e'
('\u0065'), followed by the sign of the exponent, followed by a representation of n as a decimal integer, as produced by the method Long.toString(long, int)
, and zero-padded to include at least two digits.
The number of digits in the result for the fractional part of m or a is equal to the precision. If the precision is not specified then the default value is 6
. If the precision is less than the number of digits which would appear after the decimal point in the string returned by Float.toString(float)
or Double.toString(double)
respectively, then the value will be rounded using the round half up algorithm. Otherwise, zeros may be appended to reach the precision. For a canonical representation of the value, use Float.toString(float)
or Double.toString(double)
as appropriate.
If the ','
flag is given, then an FormatFlagsConversionMismatchException
will be thrown.
'E'
'\u0045' The upper-case variant of 'e'
. The exponent symbol will be 'E'
('\u0045'). 'g'
'\u0067' Requires the output to be formatted in general scientific notation as described below. The localization algorithm is applied. After rounding for the precision, the formatting of the resulting magnitude m depends on its value.
If m is greater than or equal to 10-4 but less than 10precision then it is represented in decimal format.
If m is less than 10-4 or greater than or equal to 10precision, then it is represented in computerized scientific notation.
The total number of significant digits in m is equal to the precision. If the precision is not specified, then the default value is 6
. If the precision is 0
, then it is taken to be 1
.
If the '#'
flag is given then an FormatFlagsConversionMismatchException
will be thrown.
'G'
'\u0047' The upper-case variant of 'g'
. 'f'
'\u0066' Requires the output to be formatted using decimal format. The localization algorithm is applied. The result is a string that represents the sign and magnitude (absolute value) of the argument. The formatting of the sign is described in the localization algorithm. The formatting of the magnitude m depends upon its value.
If m NaN or infinite, the literal strings "NaN" or "Infinity", respectively, will be output. These values are not localized.
The magnitude is formatted as the integer part of m, with no leading zeroes, followed by the decimal separator followed by one or more decimal digits representing the fractional part of m.
The number of digits in the result for the fractional part of m or a is equal to the precision. If the precision is not specified then the default value is 6
. If the precision is less than the number of digits which would appear after the decimal point in the string returned by Float.toString(float)
or Double.toString(double)
respectively, then the value will be rounded using the round half up algorithm. Otherwise, zeros may be appended to reach the precision. For a canonical representation of the value, use Float.toString(float)
or Double.toString(double)
as appropriate.
'a'
'\u0061' Requires the output to be formatted in hexadecimal exponential form. No localization is applied. The result is a string that represents the sign and magnitude (absolute value) of the argument x.
If x is negative or a negative-zero value then the result will begin with '-'
('\u002d').
If x is positive or a positive-zero value and the '+'
flag is given then the result will begin with '+'
('\u002b').
The formatting of the magnitude m depends upon its value.
"0x0.0p0"
. double
value with a normalized representation then substrings are used to represent the significand and exponent fields. The significand is represented by the characters "0x1."
followed by the hexadecimal representation of the rest of the significand as a fraction. The exponent is represented by 'p'
('\u0070') followed by a decimal string of the unbiased exponent as if produced by invoking Integer.toString
on the exponent value. If the precision is specified, the value is rounded to the given number of hexadecimal digits. double
value with a subnormal representation then, unless the precision is specified to be in the range 1 through 12, inclusive, the significand is represented by the characters '0x0.'
followed by the hexadecimal representation of the rest of the significand as a fraction, and the exponent represented by 'p-1022'
. If the precision is in the interval [1, 12], the subnormal value is normalized such that it begins with the characters '0x1.'
, rounded to the number of hexadecimal digits of precision, and the exponent adjusted accordingly. Note that there must be at least one nonzero digit in a subnormal significand. If the '('
or ','
flags are given, then a FormatFlagsConversionMismatchException
will be thrown.
'A'
'\u0041' The upper-case variant of 'a'
. The entire string representing the number will be converted to upper case including the 'x'
('\u0078') and 'p'
('\u0070' and all hexadecimal digits 'a'
- 'f'
('\u0061' - '\u0066').
全部flags定义为字节,短,整数和长度适用。
如果给出了'#'
标志,则小数分隔符将始终存在。
如果没有flags给出的默认格式如下:
width
'-'
width是要写入输出的最小字符数。 这包括任何符号,数字,分组分隔符,十进制分隔符,指数符号,基数指示符,括号和表示无穷大和NaN的字符串。 如果转换值的长度小于宽度,则输出将被空格填充( '\u0020' ),直到字符总数等于宽度。 默认情况下,填充在左侧。 如果给出'-'
标志,则填充将在右侧。 如果没有指定width,那么没有最小值。
如果conversion是'e'
, 'E'
或'f'
,则精度是数字的小数分隔后的位数。 如果未指定精度,则假定为6
。
如果转换为'g'
或'G'
,则精度是四舍五入后所得大小的有效数字的总数。 如果未指定精度,则默认值为6
。 如果精度为0
,则为1
。
如果转换为'a'
或'A'
,则精度是小数点之后的十六进制数字的数量。 如果没有提供精度,则输出Double.toHexString(double)
返回的所有数字。
可以应用以下转换BigDecimal
。
'e'
'\u0065' Requires the output to be formatted using computerized scientific notation. The localization algorithm is applied. The formatting of the magnitude m depends upon its value.
If m is positive-zero or negative-zero, then the exponent will be "+00"
.
Otherwise, the result is a string that represents the sign and magnitude (absolute value) of the argument. The formatting of the sign is described in the localization algorithm. The formatting of the magnitude m depends upon its value.
Let n be the unique integer such that 10n <= m < 10n+1; then let a be the mathematically exact quotient of m and 10n so that 1 <= a < 10. The magnitude is then represented as the integer part of a, as a single decimal digit, followed by the decimal separator followed by decimal digits representing the fractional part of a, followed by the exponent symbol 'e'
('\u0065'), followed by the sign of the exponent, followed by a representation of n as a decimal integer, as produced by the method Long.toString(long, int)
, and zero-padded to include at least two digits.
The number of digits in the result for the fractional part of m or a is equal to the precision. If the precision is not specified then the default value is 6
. If the precision is less than the number of digits to the right of the decimal point then the value will be rounded using the round half up algorithm. Otherwise, zeros may be appended to reach the precision. For a canonical representation of the value, use BigDecimal.toString()
.
If the ','
flag is given, then an FormatFlagsConversionMismatchException
will be thrown.
'E'
'\u0045' The upper-case variant of 'e'
. The exponent symbol will be 'E'
('\u0045'). 'g'
'\u0067' Requires the output to be formatted in general scientific notation as described below. The localization algorithm is applied. After rounding for the precision, the formatting of the resulting magnitude m depends on its value.
If m is greater than or equal to 10-4 but less than 10precision then it is represented in decimal format.
If m is less than 10-4 or greater than or equal to 10precision, then it is represented in computerized scientific notation.
The total number of significant digits in m is equal to the precision. If the precision is not specified, then the default value is 6
. If the precision is 0
, then it is taken to be 1
.
If the '#'
flag is given then an FormatFlagsConversionMismatchException
will be thrown.
'G'
'\u0047' The upper-case variant of 'g'
. 'f'
'\u0066' Requires the output to be formatted using decimal format. The localization algorithm is applied. The result is a string that represents the sign and magnitude (absolute value) of the argument. The formatting of the sign is described in the localization algorithm. The formatting of the magnitude m depends upon its value.
The magnitude is formatted as the integer part of m, with no leading zeroes, followed by the decimal separator followed by one or more decimal digits representing the fractional part of m.
The number of digits in the result for the fractional part of m or a is equal to the precision. If the precision is not specified then the default value is 6
. If the precision is less than the number of digits to the right of the decimal point then the value will be rounded using the round half up algorithm. Otherwise, zeros may be appended to reach the precision. For a canonical representation of the value, use BigDecimal.toString()
.
所有flags定义为字节,短,整数和长度适用。
如果给出'#'
标志,则小数分隔符将始终存在。
default behavior当没有标志被赋予与Float和Double相同。
的说明书width和precision是一样的浮点和双精度限定。
这种转换可以应用于long
, Long
, Calendar
, Date
和TemporalAccessor
't'
'\u0074' Prefix for date and time conversion characters. 'T'
'\u0054' The upper-case variant of 't'
.
为't'
和'T'
转换定义了以下日期和时间转换字符后缀。 类型与GNU date
和POSIX strftime(3c)
所定义的类似但不strftime(3c)
。 提供额外的转换类型(例如访问特定Java的功能'L'
内的第二对毫秒)。
以下转换字符用于格式化时间:
'H'
'\u0048' Hour of the day for the 24-hour clock, formatted as two digits with a leading zero as necessary i.e. 00 - 23
. 00
corresponds to midnight. 'I'
'\u0049' Hour for the 12-hour clock, formatted as two digits with a leading zero as necessary, i.e. 01 - 12
. 01
corresponds to one o'clock (either morning or afternoon). 'k'
'\u006b' Hour of the day for the 24-hour clock, i.e. 0 - 23
. 0
corresponds to midnight. 'l'
'\u006c' Hour for the 12-hour clock, i.e. 1 - 12
. 1
corresponds to one o'clock (either morning or afternoon). 'M'
'\u004d' Minute within the hour formatted as two digits with a leading zero as necessary, i.e. 00 - 59
. 'S'
'\u0053' Seconds within the minute, formatted as two digits with a leading zero as necessary, i.e. 00 - 60
("60
" is a special value required to support leap seconds). 'L'
'\u004c' Millisecond within the second formatted as three digits with leading zeros as necessary, i.e. 000 - 999
. 'N'
'\u004e' Nanosecond within the second, formatted as nine digits with leading zeros as necessary, i.e. 000000000 - 999999999
. The precision of this value is limited by the resolution of the underlying operating system or hardware. 'p'
'\u0070' Locale-specific morning or afternoon marker in lower case, e.g."am
" or "pm
". Use of the conversion prefix 'T'
forces this output to upper case. (Note that 'p'
produces lower-case output. This is different from GNU date
and POSIX strftime(3c)
which produce upper-case output.) 'z'
'\u007a' RFC 822 style numeric time zone offset from GMT, e.g. -0800
. This value will be adjusted as necessary for Daylight Saving Time. For long
, Long
, and Date
the time zone used is the default time zone for this instance of the Java virtual machine. 'Z'
'\u005a' A string representing the abbreviation for the time zone. This value will be adjusted as necessary for Daylight Saving Time. For long
, Long
, and Date
the time zone used is the default time zone for this instance of the Java virtual machine. The Formatter's locale will supersede the locale of the argument (if any). 's'
'\u0073' Seconds since the beginning of the epoch starting at 1 January 1970 00:00:00
UTC, i.e. Long.MIN_VALUE/1000
to Long.MAX_VALUE/1000
. 'Q'
'\u004f' Milliseconds since the beginning of the epoch starting at 1 January 1970 00:00:00
UTC, i.e. Long.MIN_VALUE
to Long.MAX_VALUE
. The precision of this value is limited by the resolution of the underlying operating system or hardware.
以下转换字符用于格式化日期:
'B'
'\u0042' Locale-specific full month name, e.g. "January"
, "February"
. 'b'
'\u0062' Locale-specific abbreviated month name, e.g. "Jan"
, "Feb"
. 'h'
'\u0068' Same as 'b'
. 'A'
'\u0041' Locale-specific full name of the day of the week, e.g. "Sunday"
, "Monday"
'a'
'\u0061' Locale-specific short name of the day of the week, e.g. "Sun"
, "Mon"
'C'
'\u0043' Four-digit year divided by 100
, formatted as two digits with leading zero as necessary, i.e. 00 - 99
'Y'
'\u0059' Year, formatted to at least four digits with leading zeros as necessary, e.g. 0092
equals 92
CE for the Gregorian calendar. 'y'
'\u0079' Last two digits of the year, formatted with leading zeros as necessary, i.e. 00 - 99
. 'j'
'\u006a' Day of year, formatted as three digits with leading zeros as necessary, e.g. 001 - 366
for the Gregorian calendar. 001
corresponds to the first day of the year. 'm'
'\u006d' Month, formatted as two digits with leading zeros as necessary, i.e. 01 - 13
, where "01
" is the first month of the year and ("13
" is a special value required to support lunar calendars). 'd'
'\u0064' Day of month, formatted as two digits with leading zeros as necessary, i.e. 01 - 31
, where "01
" is the first day of the month. 'e'
'\u0065' Day of month, formatted as two digits, i.e. 1 - 31
where "1
" is the first day of the month.
以下转换字符用于格式化常用日期/时间合成。
'R'
'\u0052' Time formatted for the 24-hour clock as "%tH:%tM"
'T'
'\u0054' Time formatted for the 24-hour clock as "%tH:%tM:%tS"
. 'r'
'\u0072' Time formatted for the 12-hour clock as "%tI:%tM:%tS %Tp"
. The location of the morning or afternoon marker ('%Tp'
) may be locale-dependent. 'D'
'\u0044' Date formatted as "%tm/%td/%ty"
. 'F'
'\u0046' ISO 8601 complete date formatted as "%tY-%tm-%td"
. 'c'
'\u0063' Date and time formatted as "%ta %tb %td %tT %tZ %tY"
, e.g. "Sun Jul 20 16:17:00 EDT 1969"
.
适用于General conversions的'-'
标志。 如果给出了'#'
标志,那么将抛出一个FormatFlagsConversionMismatchException
。
宽度是要写入输出的最小字符数。 如果转换值的长度小于width
则输出将被空格( '\u0020' )填充,直到总字符数等于宽度。 默认情况下,填充在左侧。 如果给出'-'
标志,则填充将在右侧。 如果没有指定width,那么没有最小值。
精度不适用。 如果指定精度,则会抛出8845629397111111 。
转换不符合任何参数。
'%'
The result is a literal '%'
('\u0025') The width is the minimum number of characters to be written to the output including the '%'
. If the length of the converted value is less than the width
then the output will be padded by spaces ('\u0020') until the total number of characters equals width. The padding is on the left. If width is not specified then just the '%'
is output.
The '-'
flag defined for General conversions applies. If any other flags are provided, then a FormatFlagsConversionMismatchException
will be thrown.
The precision is not applicable. If the precision is specified an IllegalFormatPrecisionException
will be thrown.
转换不符合任何参数。
'n'
the platform-specific line separator as returned by System.getProperty("line.separator")
.
标志,宽度和精度不适用。 如果有任何提供的话 ,将分别投给IllegalFormatFlagsException
,IllegalFormatWidthException
和IllegalFormatPrecisionException
。
格式说明符可以通过三种方式引用参数:
1$
” 1$
,第二个参数由“ 2$
”等2$
。参数可以被多次引用。 例如:
formatter.format("%4$s %3$s %2$s %1$s %4$s %3$s %2$s %1$s", "a", "b", "c", "d") // -> "d c b a d c b a"
'<'
( '\u003c' )标志时,会使用相对索引 ,该标志会导致先前格式说明符的参数被重新使用。 如果没有以前的参数,则抛出一个MissingFormatArgumentException
。
formatter.format("%s %s %<s %<s", "a", "b", "c", "d") // -> "a b b b" // "c" and "d" are ignored because they are not referenced
'<'
标志时,将使用普通索引 。 使用普通索引的每个格式说明符都被分配给参数列表中的顺序隐含索引,该索引独立于显式索引或相关索引使用的索引。
formatter.format("%s %s %s %s", "a", "b", "c", "d") // -> "a b c d"
可以使用使用所有形式的索引的格式字符串,例如:
formatter.format("%2$s %s %<s %s", "a", "b", "c", "d") // -> "b a a b" // "c" and "d" are ignored because they are not referenced
参数的最大数量受限于The Java™ Virtual Machine Specification定义的Java数组的最大维数 。 如果参数索引不符合可用参数,则抛出MissingFormatArgumentException
。
如果比格式说明符更多的参数,额外的参数将被忽略。
除非另有说明,否则将null
参数传递给此类中的任何方法或构造函数将导致抛出NullPointerException
。
Modifier and Type | Class and Description |
---|---|
static class |
Formatter.BigDecimalLayoutForm
枚举为
BigDecimal 格式。
|
Constructor and Description |
---|
Formatter()
构造一个新的格式化程序。
|
Formatter(Appendable a)
使用指定的目的地构造一个新的格式化程序。
|
Formatter(Appendable a, Locale l)
构造一个具有指定目的地和区域设置的新格式化程序。
|
Formatter(File file)
使用指定的文件构造一个新的格式化程序。
|
Formatter(File file, String csn)
使用指定的文件和字符集构造一个新的格式化程序。
|
Formatter(File file, String csn, Locale l)
使用指定的文件,字符集和区域设置构造一个新的格式化程序。
|
Formatter(Locale l)
构造具有指定区域设置的新格式化程序。
|
Formatter(OutputStream os)
使用指定的输出流构造一个新的格式化程序。
|
Formatter(OutputStream os, String csn)
使用指定的输出流和字符集构造一个新的格式化程序。
|
Formatter(OutputStream os, String csn, Locale l)
使用指定的输出流,字符集和区域设置构造一个新的格式化程序。
|
Formatter(PrintStream ps)
使用指定的打印流构造新的格式化程序。
|
Formatter(String fileName)
构造具有指定文件名的新格式化程序。
|
Formatter(String fileName, String csn)
构造具有指定文件名和字符集的新格式化程序。
|
Formatter(String fileName, String csn, Locale l)
构造具有指定文件名,字符集和区域设置的新格式化程序。
|
Modifier and Type | Method and Description |
---|---|
void |
close()
关闭此格式化程序。
|
void |
flush()
刷新格式化程序。
|
Formatter |
format(Locale l, String format, Object... args)
使用指定的区域设置,格式字符串和参数将格式化的字符串写入此对象的目标。
|
Formatter |
format(String format, Object... args)
使用指定的格式字符串和参数将格式化的字符串写入此对象的目标。
|
IOException |
ioException()
返回此 IOException 最后抛出的IOException 。
|
Locale |
locale()
返回通过构建此格式化程序设置的区域设置。
|
Appendable |
out()
返回输出的目的地。
|
String |
toString()
返回在输出的
toString() 上调用
toString() 的结果。
|
public Formatter()
格式化输出的目的地是StringBuilder
,其可以通过调用被检索out()
并且其当前内容可以通过调用被转换成字符串toString()
。 使用的语言环境是default locale为formatting Java虚拟机实例。
public Formatter(Appendable a)
所使用的语言环境是Java虚拟机的这个实例的formatting的default locale 。
a
- 格式化输出的目的地。
如果a
是null
那么将创建一个StringBuilder
。
public Formatter(Locale l)
格式化输出的目的地是StringBuilder
,其可以通过调用被检索out()
并且其当前内容可以通过调用被转换成字符串toString()
。
l
- 格式化期间应用的locale。
如果l
是null
,则不应用本地化。
public Formatter(Appendable a, Locale l)
a
- 格式化输出的目的地。
如果a
是null
那么将创建一个StringBuilder
。
l
- 格式化期间应用的locale。
如果l
是null
,则不应用定位。
public Formatter(String fileName) throws FileNotFoundException
使用的字符集是Java虚拟机的这个实例的default charset 。
使用的语言环境是default locale为formatting Java虚拟机实例。
fileName
- 用作此格式化程序的目标位置的文件的名称。
如果文件存在,那么它将被截断为零大小;
否则,将创建一个新文件。
输出将被写入文件并进行缓冲。
SecurityException
- 如果安全管理器存在,并且
checkWrite(fileName)
否认对该文件的写入访问
FileNotFoundException
- 如果给定的文件名不表示现有的可写常规文件,并且无法创建该名称的新常规文件,或者在打开或创建文件时出现其他错误
public Formatter(String fileName, String csn) throws FileNotFoundException, UnsupportedEncodingException
使用的语言环境是default locale为formatting Java虚拟机实例。
fileName
- 要用作此格式化程序的目标的文件的名称。
如果文件存在,那么它将被截断为零大小;
否则,将创建一个新文件。
输出将被写入文件并进行缓冲。
csn
- 受支持的charset的名字
FileNotFoundException
- 如果给定的文件名不表示现有的可写常规文件,并且无法创建该名称的新常规文件,或者在打开或创建文件时发生其他错误
SecurityException
- 如果安全管理器存在,并且
checkWrite(fileName)
拒绝对文件的写入访问
UnsupportedEncodingException
- 如果不支持命名的字符集
public Formatter(String fileName, String csn, Locale l) throws FileNotFoundException, UnsupportedEncodingException
fileName
- 用作此格式化程序的目标的文件的名称。
如果文件存在,那么它将被截断为零大小;
否则,将创建一个新文件。
输出将被写入文件并进行缓冲。
csn
-的名字支持charset
l
- 格式化期间应用的locale。
如果l
是null
,则不应用本地化。
FileNotFoundException
- 如果给定的文件名不表示现有的,可写的常规文件,并且无法创建该名称的新常规文件,或者在打开或创建文件时发生其他错误
SecurityException
- 如果存在安全管理员,并且
checkWrite(fileName)
拒绝对文件的写入访问
UnsupportedEncodingException
- 如果不支持命名的字符集
public Formatter(File file) throws FileNotFoundException
所使用的字符集是Java虚拟机的这个实例的default charset 。
所使用的语言环境是default locale ,用于Java虚拟机的此实例的formatting 。
file
- 用作此格式化程序的目的地的文件。
如果文件存在,那么它将被截断为零大小;
否则,将创建一个新文件。
输出将被写入文件并进行缓冲。
SecurityException
-如果安全管理器,并且
checkWrite(file.getPath())
拒绝写入访问文件
FileNotFoundException
- 如果给定的文件对象不表示现有的可写常规文件,并且无法创建该名称的新常规文件,或者在打开或创建文件时出现其他错误
public Formatter(File file, String csn) throws FileNotFoundException, UnsupportedEncodingException
使用的语言环境是default locale为formatting Java虚拟机实例。
file
- 用作此格式化程序的目的地的文件。
如果文件存在,那么它将被截断为零大小;
否则,将创建一个新文件。
输出将被写入文件并进行缓冲。
csn
-的名字支持charset
FileNotFoundException
- 如果给定的文件对象不表示现有的可写常规文件,并且无法创建该名称的新常规文件,或者在打开或创建文件时发生其他错误
SecurityException
- 如果存在安全管理员,并且
checkWrite(file.getPath())
拒绝对该文件的写入访问
UnsupportedEncodingException
- 如果不支持命名的字符集
public Formatter(File file, String csn, Locale l) throws FileNotFoundException, UnsupportedEncodingException
file
- 用作此格式化程序的目的地的文件。
如果文件存在,那么它将被截断为零大小;
否则,将创建一个新文件。
输出将被写入文件并进行缓冲。
csn
-的名字支持charset
l
- 格式化期间应用的locale。
如果l
是null
,则不应用本地化。
FileNotFoundException
- 如果给定的文件对象不表示现有的可写的常规文件,并且无法创建该名称的新常规文件,或者在打开或创建文件时发生其他错误
SecurityException
- 如果安全管理器存在,并且
checkWrite(file.getPath())
否认对该文件的写入访问
UnsupportedEncodingException
- 如果不支持命名的字符集
public Formatter(PrintStream ps)
使用的语言环境是default locale为formatting Java虚拟机实例。
字符写入给定的PrintStream
对象,因此使用该对象的字符集进行编码。
ps
- 用作此格式化程序的目标的流。
public Formatter(OutputStream os)
所使用的字符集是Java虚拟机的这个实例的default charset 。
所使用的区域是default locale ,用于formatting用于此Java虚拟机实例。
os
- 用作此格式化程序的目标的输出流。
输出将被缓冲。
public Formatter(OutputStream os, String csn) throws UnsupportedEncodingException
使用的语言环境是default locale为formatting Java虚拟机实例。
os
- 用作此格式化程序目标的输出流。
输出将被缓冲。
csn
-的名字支持charset
UnsupportedEncodingException
- 如果不支持命名的字符集
public Formatter(OutputStream os, String csn, Locale l) throws UnsupportedEncodingException
os
- 用作此格式化程序的目的地的输出流。
输出将被缓冲。
csn
-的名字支持charset
l
- 格式化期间应用的locale。
如果l
是null
,则不应用本地化。
UnsupportedEncodingException
- 如果不支持命名的字符集
public Locale locale()
具有locale参数的此对象的format
方法不会更改此值。
null
如果没有应用本地化,否则是一个区域设置
FormatterClosedException
- 如果这个格式化程序已经通过调用其
close()
方法关闭了
public Appendable out()
FormatterClosedException
- 如果格式化程序已经通过调用其
close()
方法关闭了
public String toString()
toString()
的结果。
例如,以下代码将文本格式化为StringBuilder
,然后检索结果字符串:
Formatter f = new Formatter(); f.format("Last reboot at %tc", lastRebootDate); String s = f.toString(); // -> s == "Last reboot at Sat Jan 01 00:00:00 PST 2000"
调用此方法的行为方式与调用完全相同
out().toString()
根据toString的toString
的规格 ,返回的字符串可能包含或不包含写入目的地的字符。 例如,缓冲区通常在toString()
中返回其内容,但是由于数据被丢弃,流不能。
toString
在
Object
toString()
的结果
FormatterClosedException
- 如果格式化程序已经通过调用其
close()
方法关闭
public void flush()
flush
中的
Flushable
FormatterClosedException
- 如果格式化程序已经通过调用其
close()
方法关闭
public void close()
Closeable
接口,则其close
方法将被调用。
关闭格式化程序允许它释放它可能持有的资源(如打开的文件)。 如果格式化程序已经关闭,则调用此方法没有任何作用。
在格式化程序关闭后,除了ioException()
之外, 尝试调用任何方法将导致FormatterClosedException
。
close
中的
Closeable
close
在接口
AutoCloseable
public IOException ioException()
IOException
最后抛出的IOException 。
如果目的地的append()
方法从不抛出IOException
,那么此方法将始终返回null
。
null
如果没有这样的例外存在。
public Formatter format(String format, Object... args)
format
- Format string syntax中
描述的格式字符串。
args
- 格式字符串中格式说明符引用的参数。
如果比格式说明符更多的参数,额外的参数将被忽略。
参数的最大数量受限于The Java™ Virtual Machine Specification定义的Java数组的最大维度 。
IllegalFormatException
- 如果格式字符串包含非法语法,则与给定参数不兼容的格式说明符,给定格式字符串的参数不足或其他非法条件。
有关所有可能的格式化错误的规范 ,请参阅格式化程序类规范的Details部分。
FormatterClosedException
- 如果格式化程序已经通过调用其
close()
方法关闭
public Formatter format(Locale l, String format, Object... args)
l
- 格式化期间应用的locale。
如果l
是null
,则不应用定位。
这不会改变在构建期间设置的对象的区域设置。
format
- Format string syntax中
描述的格式字符串
args
- 格式字符串中格式说明符引用的参数。
如果比格式说明符更多的参数,额外的参数将被忽略。
参数的最大数量受限于The Java™ Virtual Machine Specification定义的Java数组的最大维数 。
IllegalFormatException
- 如果格式字符串包含非法语法,则与给定参数不兼容的格式说明符,给定格式字符串的参数不足或其他非法条件。
有关所有可能的格式化错误的规范 ,请参阅格式化程序类规范的Details部分。
FormatterClosedException
- 如果格式化程序通过调用其
close()
方法已关闭
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.