boolean checkError PrintStream append(CharSequence csq, int start, int end) protected void clearError 描述 所述java.io.PrintStream.checkError()方法刷新流并检查其错误状态。当基础输出流抛出InterruptedIOException以外的IOException时,以及调用setError方法时,内部错误状态将设置为true。如果基础输出流上的操作抛出InterruptedIOException,则PrintStream通过执行以下操作将异常转换回中断: 声明 以下是java.io.PrintStream.checkError()方法的声明。 public boolean checkError() 参数 NA 返回值 当且仅当此流遇到InterruptedIOException以外的IOException或者已调用setError方法时,此方法才返回true。 异常 NA 实例 以下示例显示了java.io.PrintStream.checkError()方法的用法。 package com.tutorialspoint; import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { String s = "Hello World."; // create a new PrintStream PrintStream ps = new PrintStream(System.out); // print a string ps.println(s); // check for errors and print ps.print(ps.checkError()); ps.flush(); ps.close(); } } 让我们编译并运行上面的程序,这将产生以下结果 Hello World. false PrintStream append(CharSequence csq, int start, int end) protected void clearError