Java PrintWriter setError()方法

java.io.PrintWriter.setError() 方法设置流的错误状态为true。

1 语法

protected void setError()

2 参数

3 返回值

4 示例 

package com.yiidian;

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

/**
 * java.io.PrintWriter.setError()方法的例子
 */
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();

        // set the error state
        pw.setError();
    }
}

输出结果为:

HelloWorld

热门文章

优秀文章