當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.PrintWriter.format()用法及代碼示例



描述

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

聲明

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

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

參數

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

  • args- 格式字符串中格式說明符引用的參數。如果參數多於格式說明符,則忽略多餘的參數。參數的數量是可變的,可能為零。參數的最大數量受 Java 虛擬機規範定義的 Java 數組的最大維度的限製。空參數的行為取決於轉換。

返回值

此方法返回此編寫器。

異常

  • IllegalFormatException− 如果格式字符串包含非法語法、與給定參數不兼容的格式說明符、給定格式字符串的參數不足或其他非法條件。

  • NullPointerException− 如果格式為空。

示例

下麵的例子展示了使用java.io.PrintWriter.format()方法。

package com.tutorialspoint;

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
This is a Hello World program with 100

相關用法


注:本文由純淨天空篩選整理自 Java.io.PrintWriter.format() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。