PrintWriter.format(String format,Object args)方法實例
**java.io.PrintWriter.format()**使用指定的格式字符串和參數的方法寫一個格式化字符串寫入此writer。如果啓用自動刷新,調用此方法將刷新輸出緩衝區。
聲明
以下是java.io.PrintWriter.format()方法的聲明
public PrintWriter format(String format,Object... args)
參數
format -- 在格式字符串的語法中描述的格式字符串。
args -- 參數的格式說明符在格式字符串中引用。如果有多於格式說明符的參數,多餘的參數被忽略。參數的個數是可變的,並且可以爲零。參數的最大數量受到Java數組的最大維數的Java虛擬機規範定義的限制。上一個null參數的行爲取決於轉換。
返回值
此方法返回這個writer
異常
IllegalFormatException -- 如果格式字符串包含非法語法,格式說明符與給定的參數,給出的格式字符串參數不足,或其他非法條件不符
NullPointerException -- 如果format 是 null
例子
下面的示例演示java.io.PrintWriter.format()方法的用法。
package com.yiibai; import java.io.*; public class PrintWriterDemo { public static void main(String[] args) { String s = "Hello World"; try { // create a new writer PrintWriter pw = new PrintWriter(System.out); // format text with default locale // %s indicates a string will be placed there, which is s pw.format("This is a %s program", s); // change line pw.println(); // format text with default locale // %d indicates a integer will be placed there, which is 100 pw.format("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