鸿蒙OS ObjectOutput

2022-10-17 12:00 更新

ObjectOutput

public interface ObjectOutput
extends DataOutput, AutoCloseable

ObjectOutput 扩展了 DataOutput 接口以包括对象的写入。 DataOutput 包括用于输出原始类型的方法,ObjectOutput 扩展了该接口以包括对象、数组和字符串。

Since:

JDK1.1

方法总结

修饰符和类型 方法 描述
void close() 关闭流。
void flush() 冲洗流。
void write(byte[] b) 写入一个字节数组。
void write(byte[] b, int off, int len) 写入一个子字节数组。
void write(int b) 写入一个字节。
void writeObject(Object obj) 将对象写入底层存储或流。
从接口 java.io.DataOutput 继承的方法
writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF

方法详情

writeObject

void writeObject(Object obj) throws IOException

将对象写入底层存储或流。 实现此接口的类定义了对象的编写方式。

参数:

参数名称 参数描述
obj 要写入的对象

Throws:

Throw名称 Throw描述
IOException 任何常见的输入/输出相关异常。

write

void write(int b) throws IOException

写入一个字节。 此方法将阻塞,直到实际写入字节。

指定者:

写入接口DataOutput

参数:

参数名称 参数描述
b 字节

Throws:

Throw名称 Throw描述
IOException 如果发生 I/O 错误。

write

void write(byte[] b) throws IOException

写入一个字节数组。 此方法将阻塞,直到实际写入字节。

指定者:

写入接口DataOutput

参数:

参数名称 参数描述
b 要写入的数据

Throws:

Throw名称 Throw描述
IOException 如果发生 I/O 错误。

write

void write(byte[] b, int off, int len) throws IOException

写入一个子字节数组。

指定者:

写入接口DataOutput

参数:

参数名称 参数描述
b 要写入的数据
off 数据中的起始偏移量
len 写入的字节数

Throws:

Throw名称 Throw描述
IOException 如果发生 I/O 错误。

flush

void flush() throws IOException

冲洗流。 这将写入任何缓冲的输出字节。

Throws:

Throw名称 Throw描述
IOException 如果发生 I/O 错误。

close

void close() throws IOException

关闭流。 必须调用此方法来释放与流关联的任何资源。

指定者:

在接口 AutoCloseable 中关闭

Throws:

Throw名称 Throw描述
IOException 如果发生 I/O 错误。
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号