Java PrintWriter clearError()方法
java.io.PrintWriter.clearError() 方法清除该流的错误状态。此方法将导致后续调用checkError()直到下一次写操作失败并调用setError()返回false。
1 语法
protected void clearError()
2 参数
无
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.PrintWriter.clearError()方法的例子
*/
import java.io.*;
public class Demo extends PrintWriter {
public Demo(OutputStream out) {
super(System.out);
}
public static void main(String[] args) {
String s = "Hello World";
// create a new writer
Demo pw = new Demo(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();
}
}
输出结果为:
HelloWorld
热门文章
优秀文章