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