PrintWriter.printf(String format,Object args)方法实例
java.io.PrintWriter.printf() 方法是一个方便的方法使用指定格式字符串和参数将格式化字符串写入此writer中。如果启用自动刷新,调用此方法将刷新输出缓冲区。
声明
以下是java.io.PrintWriter.printf()方法的声明
public PrintWriter printf(String format,Object... args)
参数
-
format -- 在格式字符串的语法中描述的格式字符串。
-
args -- 参数的格式说明符在格式字符串中引用。如果有多于格式说明符的参数,多余的参数被忽略。参数的个数是可变的,并且可以为零。参数的最大数量受到Java数组的最大维数的Java虚拟机规范定义的限制。上一个null参数的行为取决于转换。
返回值
此方法返回这个writer。
异常
-
IllegalFormatException -- 如果格式字符串包含非法语法,格式说明符与给定的参数,给出的格式字符串参数不足,或其他非法条件是不相容的。对于规范的所有可能的格式错误,请参阅formatter类规范的详细信息部分。
-
NullPointerException -- 如果format 为 null
例子
下面的示例演示java.io.PrintWriter.printf()方法的用法。
package com.yiibai; import java.io.*; import java.util.Locale; public class PrintWriterDemo { public static void main(String[] args) { String s = "Hello World"; try { // create a new writer PrintWriter pw = new PrintWriter(System.out); // printf text with default locale. // %s indicates a string will be placed there, which is s pw.printf("This is a %s program", s); // change line pw.println(); // printf text with default locale // %d indicates a integer will be placed there, which is 100 pw.printf("This is a %s program with %d", s, 100); // flush the writer pw.flush(); } catch (Exception ex) { ex.printStackTrace(); } } }
让我们编译和运行上面的程序,这将产生以下结果:
This is a Hello World program