codecamp

鸿蒙OS ObjectOutput

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 错误。
鸿蒙OS ObjectInputValidation
鸿蒙OS ObjectStreamConstants
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

鸿蒙OS 开发

鸿蒙OS 术语

鸿蒙OS Java API参考

鸿蒙OS ohos.aafwk.ability

鸿蒙OS ohos.aafwk.abilityjet.activedata

鸿蒙OS ohos.aafwk.content

鸿蒙OS java.lang

鸿蒙OS java.Util

鸿蒙OS java.Util class

鸿蒙OS ohos.data.dataability

鸿蒙OS ohos.data.dataability class

鸿蒙OS ohos.agp.components

鸿蒙OS ohos.agp.components interface

鸿蒙OS ohos.agp.components class

鸿蒙OS ohos.global.configuration

鸿蒙OS java.io

鸿蒙OS ohos.data.resultset

鸿蒙OS ohos.data.resultset interface

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }