W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
public interface ObjectInput
extends DataInput, AutoCloseable
ObjectInput 擴展了 DataInput 接口以包括對象的讀取。 DataInput 包括用于輸入原始類型的方法,ObjectInput 擴展了該接口以包括對象、數(shù)組和字符串。
Since:
JDK1.1
修飾符和類型 | 方法 | 描述 |
---|---|---|
int | available() | 返回可以在不阻塞的情況下讀取的字節(jié)數(shù)。 |
void | close() | 關(guān)閉輸入流。 |
int | read() | 讀取一個字節(jié)的數(shù)據(jù)。 |
int | read(byte[] b) | 讀入一個字節(jié)數(shù)組。 |
int | read(byte[] b, int off, int len) | 讀入一個字節(jié)數(shù)組。 |
Object | readObject() | 讀取并返回一個對象。 |
long | skip(long n) | 跳過 n 個字節(jié)的輸入。 |
從接口 java.io.DataInput 繼承的方法 |
---|
readBoolean, readByte, readChar, readDouble, readFloat, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedShort, readUTF, skipBytes |
Object readObject() throws ClassNotFoundException, IOException
讀取并返回一個對象。 實現(xiàn)此接口的類定義了從何處“讀取”對象。
返回:
從流中讀取的對象
Throws:
Throw名稱 | Throw描述 |
---|---|
ClassNotFoundException | 如果找不到序列化對象的類。 |
IOException | 如果發(fā)生任何常見的輸入/輸出相關(guān)異常。 |
int read() throws IOException
讀取一個字節(jié)的數(shù)據(jù)。 如果沒有可用的輸入,此方法將阻塞。
返回:
讀取的字節(jié),如果到達流的末尾,則為 -1。
Throws:
Throw名稱 | Throw描述 |
---|---|
IOException | 如果發(fā)生 I/O 錯誤。 |
int read(byte[] b) throws IOException
讀入一個字節(jié)數(shù)組。 此方法將阻塞,直到某些輸入可用。
參數(shù):
參數(shù)名稱 | 參數(shù)描述 |
---|---|
b | 讀取數(shù)據(jù)的緩沖區(qū) |
返回:
實際讀取的字節(jié)數(shù),到達流末尾時返回-1。
Throws:
Throw名稱 | Throw描述 |
---|---|
IOException | 如果發(fā)生 I/O 錯誤。 |
int read(byte[] b, int off, int len) throws IOException
讀入一個字節(jié)數(shù)組。 此方法將阻塞,直到某些輸入可用。
參數(shù):
參數(shù)名稱 | 參數(shù)描述 |
---|---|
b | 讀取數(shù)據(jù)的緩沖區(qū) |
off | 數(shù)據(jù)的起始偏移量 |
len | 讀取的最大字節(jié)數(shù) |
返回:
實際讀取的字節(jié)數(shù),到達流末尾時返回-1。
Throws:
Throw名稱 | Throw描述 |
---|---|
IOException | 如果發(fā)生 I/O 錯誤。 |
long skip(long n) throws IOException
跳過 n 個字節(jié)的輸入。
參數(shù):
參數(shù)名稱 | 參數(shù)描述 |
---|---|
n | 要跳過的字節(jié)數(shù) |
返回:
跳過的實際字節(jié)數(shù)。
Throws:
Throw名稱 | Throw描述 |
---|---|
IOException | 如果發(fā)生 I/O 錯誤。 |
int available() throws IOException
返回可以在不阻塞的情況下讀取的字節(jié)數(shù)。
返回:
可用字節(jié)數(shù)。
Throws:
Throw名稱 | Throw描述 |
---|---|
IOException | 如果發(fā)生 I/O 錯誤。 |
void close() throws IOException
關(guān)閉輸入流。 必須調(diào)用以釋放與流關(guān)聯(lián)的任何資源。
指定者:
在接口 AutoCloseable 中關(guān)閉
Throws:
Throw名稱 | Throw描述 |
---|---|
IOException | 如果發(fā)生 I/O 錯誤。 |
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: