位置:首頁 > Java技術 > Java.io包 > PrintWriter.format(Locale l,String format,Object args)方法實例

PrintWriter.format(Locale l,String format,Object args)方法實例

java.io.PrintWriter.format()使用指定的格式字符串和參數的方法寫一個格式化字符串寫入此writer。如果啟用自動刷新,調用此方法將刷新輸出緩衝區。

聲明

以下是java.io.PrintWriter.format()方法的聲明

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

參數

  • l -- 格式化過程中應用的語言環境。如果l為null,則冇有本地化應用。

  • format -- 在格式字符串的語法中描述的格式字符串。

  • args -- 參數的格式說明符在格式字符串中引用。如果有多於格式說明符的參數,多餘的參數被忽略。參數的個數是可變的,並且可以為零。參數的最大數量受到Java數組的最大維數的Java虛擬機規範定義的限製。上一個null參數的行為取決於轉換。

返回值

此方法返回這個writer

異常

  • IllegalFormatException -- 如果格式字符串包含非法語法,格式說明符與給定的參數,給出的格式字符串參數不足,或其他非法條件不符

  • NullPointerException -- 如果format 是 null

例子

下麵的示例演示java.io.PrintWriter.format()方法的用法。

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);

         // 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