printstream
PrintStream类的checkError()方法 (PrintStream Class checkError() method)
checkError() method is available in java.io package.
checkError()方法在java.io包中可用。
checkError() method is used to check its error state. The internal error status is set to true if the underlying output stream throws an IOException except for InterruptedIOException and underlying output stream throws an interruptedIOException then the PrintStream translate the exception revert into an interrupt.
checkError()方法用于检查其错误状态。 如果基础输出流引发除InterruptedIOException之外的IOException,并且基础输出流引发InterruptedIOException,则内部错误状态将设置为true,然后PrintStream将异常转换为中断。
checkError() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
checkError()方法是一种非静态方法,仅可通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。
checkError() method does not throw an exception at the time of checking error state.
在检查错误状态时, checkError()方法不会引发异常。
Syntax:
句法:
public boolean checkError();
Parameter(s):
参数:
It does not accept any parameter.
它不接受任何参数。
Return value:
返回值:
The return type of the method is boolean, it returns true when this output stream result an IOException except InterruptedIOException or the setError() has been called.
方法的返回类型为boolean ,当此输出流导致IOException除外(调用InterruptedIOException或setError()时),它返回true。
Example:
例:
// Java program to demonstrate the example
// of boolean checkError() method of
// PrintStream
import java.io.*;
public class CheckErrorOfPS {
public static void main(String[] args) {
String str = "Java Programming";
// Instantiates PrintStream
PrintStream p_stm = new PrintStream(System.out);
// Display str
p_stm.println("str: " + str);
// By using checkError() method is to check
// error state whether the stream throw any
// error , exception or not
boolean status = p_stm.checkError();
System.out.println("p_stm.checkError(): " + status);
p_stm.flush();
// By using close() method is to
// close the stream p_stm
p_stm.close();
}
}
Output
输出量
str: Java Programming
p_stm.checkError(): false
翻译自: https://www.includehelp.com/java/printstream-checkerror-method-with-example.aspx
printstream