printstream_Java PrintStream checkError()方法与示例

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值