Java.io.PrintWriter.checkError()方法實例
java.io.PrintWriter.checkError() 方法刷新該流,如果它不是關閉,並檢查其錯誤狀態。
聲明
以下是java.io.PrintWriter.checkError()方法的聲明
public boolean checkError()
參數
-
NA
返回值
如果打印流遇到了一個錯誤該方法返回true,無論是在基礎輸出流或在格式轉換過程。
異常
-
NA
例子
下麵的示例演示java.io.PrintWriter.checkError()方法的用法。
package com.yiibai; import java.io.*; public class PrintWriterDemo { public static void main(String[] args) { String s = "Hello World "; // create a new stream at system PrintWriter pw = new PrintWriter(System.out); // append the sequence pw.append(s); // check if there is an error and flush System.out.println("" + pw.checkError()); } }
Let us compile and run the above program, this will produce the following result
Hello Worldfalse