Java PrintStream clearError()方法

java.io.PrintStream.clearError() 方法清除该流的内部错误状态。此方法将导致checkError()后续调用来直到下一次写操作,失败并调用setError()返回false。

1 语法

protected void clearError()

2 参数

3 返回值

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */

/**
 * java.io.PrintStream.clearError()方法的例子
 */
import java.io.*;

public class Demo extends PrintStream {

    public Demo(OutputStream out) {
        super(out);
    }

    public static void main(String[] args) {
        byte c[] = {70, 71, 72, 73, 74, 75, 76};

        // create printstream object
        Demo ps = new Demo(System.out);

        // write bytes 1-3
        ps.write(c, 1, 3);

        // flush the stream
        ps.flush();

        // clear the errors of this stream, if there are any
        ps.clearError();
    }
}

输出结果为:

GHI

热门文章

优秀文章