Java.io.PrintWriter.clearError()方法實例
java.io.PrintWriter.clearError() 方法清除該流的錯誤狀態。此方法將導致後續調用checkError()直到下一次寫操作失敗並調用setError()返回false。
聲明
以下是java.io.PrintWriter.clearError()方法的聲明
protected void clearError()
參數
-
NA
返回值
此方法不返回任何值。
異常
-
NA
例子
下麵的示例演示java.io.PrintWriter.clearError()方法的用法。
package com.yiibai; import java.io.*; public class PrintWriterDemo extends PrintWriter { public PrintWriterDemo(OutputStream out) { super(System.out); } public static void main(String[] args) { String s = "Hello World"; // create a new writer PrintWriterDemo pw = new PrintWriterDemo(System.out); // write substrings pw.write(s, 0, 5); pw.write(s, 6, 5); // flush the writer pw.flush(); // clear the errors, if there are any pw.clearError(); } }
Let us compile and run the above program, this will produce the following result
HelloWorld