Java.io.PrintWriter.printf() 方法



描述

java.io.PrintWriter.printf() 方法是一个便捷方法,用于使用指定的格式字符串和参数将格式化的字符串写入此写入器。如果启用了自动刷新,则对该方法的调用将刷新输出缓冲区。

声明

以下是java.io.PrintWriter.printf() 方法的声明。

public PrintWriter printf(String format,Object... args)

参数

  • format − 如格式字符串语法中所述的格式字符串。

  • args − 格式字符串中格式说明符引用的参数。如果参数多于格式说明符,则忽略多余的参数。参数的数量是可变的,可以为零。参数的最大数量受 Java 虚拟机规范中定义的 Java 数组的最大维度限制。空参数的行为取决于转换。

返回值

此方法返回此写入器。

异常

  • IllegalFormatException − 如果格式字符串包含非法语法、与给定参数不兼容的格式说明符、给定格式字符串的参数不足或其他非法条件。有关所有可能的格式错误的规范,请参见格式化程序类规范的“详细信息”部分。

  • NullPointerException − 如果 format 为 null。

示例

以下示例演示了java.io.PrintWriter.printf() 方法的用法。

package com.tutorialspoint;

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
This is a Hello World program with 100
java_io_printwriter.htm
广告