Java PrintStream setError()方法
java.io.PrintStream.setError() 方法设置流的错误状态为true。
1 语法
protected void setError()
2 参数
无
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.PrintStream.setError()方法的例子
*/
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();
// set an internal error
ps.setError();
}
}
输出结果为:
GHI
热门文章
优秀文章