鸿蒙OS开发文档 鸿蒙OS ReliableFileDescriptor.AutoCloseFileInputStream

2024-02-25 开发教程 鸿蒙OS开发文档 匿名 2

ReliableFileDescriptor.AutoCloseFileInputStream

java.lang.Object
|---java.io.InputStream
|---|---java.io.FileInputStream
|---|---|---ohos.rpc.ReliableFileDescriptor.AutoCloseFileInputStream

public static class ReliableFileDescriptor.AutoCloseFileInputStream
extends FileInputStream

表示一个文件输入流,其文件描述符在此流关闭时自动关闭。

此类仅适用于同一设备上的操作。

构造函数摘要

构造函数描述
AutoCloseFileInputStream(ReliableFileDescriptor reliablefd)用于使用 ReliableFileDescriptor 对象创建 AutoCloseFileInputStream 实例的构造函数。

方法总结

修饰符和类型方法描述
voidclose()关闭此 AutoCloseFileInputStream 对象,其 ReliableFileDescriptor 对象也将自动关闭。
intread()从此 AutoCloseFileInputStream 对象中读取一个整数。
从类 java.io.FileInputStream 继承的方法
available, finalize, getChannel, getFD, read, read, skip
从类 java.io.InputStream 继承的方法
mark, markSupported, reset
从类 java.lang.Object 继承的方法
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

构造函数详细信息

AutoCloseFileInputStream

public AutoCloseFileInputStream(ReliableFileDescriptor reliablefd)

用于使用 ReliableFileDescriptor 对象创建 AutoCloseFileInputStream 实例的构造函数。

参数:

参数名称参数描述
reliablefd指示要使用的 ReliableFileDescriptor 对象。

方法详情

close

public void close() throws IOException

关闭此 AutoCloseFileInputStream 对象,其 ReliableFileDescriptor 对象也将自动关闭。

指定者:

在接口 AutoCloseable 中关闭

指定者:

在接口Closeable中关闭

覆盖:

在类 FileInputStream 中关闭

Throws:

Throw名称Throw描述
IOException如果发生 I/O 错误,则引发此异常。

read

public int read() throws IOException

从此 AutoCloseFileInputStream 对象中读取一个整数。

覆盖:

读入类 FileInputStream

返回:

返回整数。

Throws:

Throw名称Throw描述
IOException如果发生 I/O 错误,则引发此异常。