Java PrintWriter format()方法

java.io.PrintWriter.format(Locale l,String format,Object... args) 使用指定的格式字符串和参数的方法写一个格式化字符串写入此writer。如果启用自动刷新,调用此方法将刷新输出缓冲区。

1 语法

public PrintWriter format(Locale l,String format,Object... args)

2 参数

l:格式化过程中应用的语言环境。如果l为null,则没有本地化应用。

format:在格式字符串的语法中描述的格式字符串。

args:参数的格式说明符在格式字符串中引用。如果有多于格式说明符的参数,多余的参数被忽略。参数的个数是可变的,并且可以为零。参数的最大数量受到Java数组的最大维数的Java虚拟机规范定义的限制。上一个null参数的行为取决于转换。

3 返回值

返回Writer。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */

/**
 * java.io.PrintWriter.format(Locale l,String format,Object... args)方法的例子
 */
import java.io.*;
import java.util.Locale;

public class Demo {
    public static void main(String[] args) {
        String s = "Hello World";

        try {
            // create a new writer
            PrintWriter pw = new PrintWriter(System.out);

            // format text with specified locale.
            // %s indicates a string will be placed there, which is s
            pw.format(Locale.UK, "This is a %s program", s);

            // change line
            pw.println();

            // format text with specified locale
            // %d indicates a integer will be placed there, which is 100
            pw.format(Locale.UK, "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

热门文章

优秀文章