|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
java.lang.Object java.io.InputStream java.io.FilterInputStream java.util.zip.CheckedInputStream
public class CheckedInputStream
需要維護所讀取資料校驗和的輸入串流。校驗和可用於驗證輸入資料的完整性。
Checksum
欄位摘要 |
---|
從類別 java.io.FilterInputStream 繼承的欄位 |
---|
in |
建構子摘要 | |
---|---|
CheckedInputStream(InputStream in,
Checksum cksum)
使用指定校驗和創建輸入串流。 |
方法摘要 | |
---|---|
Checksum |
getChecksum()
返回此輸入串流的校驗和。 |
int |
read()
讀取位元組。 |
int |
read(byte[] buf,
int off,
int len)
讀入位元組陣列。 |
long |
skip(long n)
跳過指定的輸入位元組數。 |
從類別 java.io.FilterInputStream 繼承的方法 |
---|
available, close, mark, markSupported, read, reset |
從類別 java.lang.Object 繼承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
建構子詳細資訊 |
---|
public CheckedInputStream(InputStream in, Checksum cksum)
in
- 輸入串流cksum
- 校驗和方法詳細資訊 |
---|
public int read() throws IOException
FilterInputStream
中的 read
IOException
- 如果發生 I/O 錯誤FilterInputStream.in
public int read(byte[] buf, int off, int len) throws IOException
len
不為零,則在某些輸入可用之前,此方法將發生阻塞;否則不讀取位元組並且返回 0
。
FilterInputStream
中的 read
buf
- 將資料讀入的緩衝區off
- 目標陣列 b
中的初始偏移量len
- 讀取位元組的最大數
NullPointerException
- 如果 buf
為 null
。
IndexOutOfBoundsException
- 如果 off
為負,或者 len
為負或 len
大於 buf.length - off
IOException
- 如果發生 I/O 錯誤FilterInputStream.in
public long skip(long n) throws IOException
FilterInputStream
中的 skip
n
- 要跳過的位元組數
IOException
- 如果發生 I/O 錯誤public Checksum getChecksum()
|
JavaTM 2 Platform Standard Ed. 6 |
|||||||||
上一個類別 下一個類別 | 框架 無框架 | |||||||||
摘要: 巢狀 | 欄位 | 建構子 | 方法 | 詳細資訊: 欄位 | 建構子 | 方法 |
版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only。