Example
The %s symbol serves as a placeholder for the string “World”.
System.out.printf(“Hello %s!”, “World”); |
Note: Additional “Try it Yourself” examples are available at the bottom of this page.
The printf()
method outputs formatted text or values to the console by using a format string along with additional arguments.
The data from these additional arguments is formatted and inserted into placeholders within the format string, indicated by a % symbol. The formatting of the arguments is determined by the sequence of characters following the % symbol.
The placeholders follow the format %[arg$][flags][width][.precision]conversion, where components in [square brackets] are optional.
Here’s a breakdown of each component:
Character |
Conversion |
Description |
|
Percent |
Outputs a literal “%” character in the result. |
|
Line break |
Inserts a line break in the output. |
|
Boolean |
Shows the boolean value of an argument as “true” or “false”. If “B” is used, it displays “TRUE” or “FALSE” instead. |
|
Unicode character |
Displays the Unicode character representation of the argument. For whole numbers, this corresponds to the Unicode character associated with the number. If “C” is used, the character will be converted to uppercase where applicable. |
|
String |
Shows the default string representation of the argument. If “S” is used, the string will be converted to uppercase where possible. |
|
Decimal integer |
Expresses a whole number as a decimal integer. |
|
Unsigned hexadecimal integer |
Expresses an argument’s binary data as an unsigned hexadecimal integer. If “H” is used, digits A to F are displayed in uppercase. Please note that for any data other than positive integers, this representation does not reflect its actual value. |
|
Octal integer |
Represents a whole number as an octal integer. When the “#” flag is used, the number will be prefixed with “0”. |
|
Hexadecimal integer |
Represents a whole number as a hexadecimal integer. When the “#” flag is used, the number is prefixed with “0x”. If “X” is used, digits A to F and the letter X are displayed in uppercase. |
|
Scientific notation |
Represents a floating-point number in scientific notation. Using “E” will ensure that the letter “E” in the representation is uppercase. The “#” flag will enforce a decimal point even if there are no decimal digits. |
|
Floating point number |
Represents a floating-point number. When the “#” flag is used, it will ensure a decimal point is included even if there are no decimal digits. |
|
General number |
Displays the shortest representation for a floating-point number, choosing between “f” and “e” or “E”. |
|
Hexadecimal floating point number |
Display the internal representation of a floating-point number using hexadecimal digits. |
|
Time or date |
Displays a formatted date or time. If “T” is used, text parts such as “JANUARY” will be in uppercase. The following characters are available for date and time formatting:
|
System.out.printf(locale, formatString, args) |
Parameter |
Description |
locale |
Optional. A locale used to determine some of the formatting, such as which characters are used for decimal points and grouping separators. |
formatString |
Mandatory. A string comprising placeholders for the additional arguments, specifying the desired formatting for each. |
args |
Optional. Any number of supplementary arguments passed to the method, with their values formatted and exhibited according to the formatString. |
Returns: |
An object of type PrintStream. |
Throws: |
An IllegalFormatException occurs if the format string contains an invalid placeholder or if a placeholder is incompatible with the data type of the argument. |
Java version: |
1.5 |
Example
Output a formatted text comprising a string and an integer.
System.out.printf(“Hello %s! One kilobyte is %,d bytes.”, “World”, 1024); |
Example
Present a floating-point number using various formats.
// Default System.out.printf(“%f%n”, 123456.78); // Two decimal digits System.out.printf(“%.2f%n”, 123456.78); // No decimal digits System.out.printf(“%.0f%n”, 123456.78); // No decimal digits but keep the decimal point System.out.printf(“%#.0f%n”, 123456.78); // Group digits System.out.printf(“%,.2f%n”, 123456.78); // Scientific notation with two digits of precision System.out.printf(“%.2e”, 123456.78); |
Example
A placeholder that incorporates every element.
System.out.printf(“%2$,3.2f %1$s”, “meters”, 1260.5052); |
Here’s the breakdown of each component in the placeholder %2$,3.2f:
Example
Convert a Unix timestamp into a formatted date.
|
Example
Express characters using their Unicode code points.
|