JavaTM 2 Platform
Standard Ed. 6

java.util.zip
介面 Checksum

所有已知實作類別:
Adler32, CRC32

public interface Checksum

表示資料校驗和的介面。


方法摘要
 long getValue()
          返回當前的校驗和值。
 void reset()
          將校驗和重置為其初始值。
 void update(byte[] b, int off, int len)
          使用指定的位元組陣列更新當前校驗和。
 void update(int b)
          使用指定位元組更新當前校驗和。
 

方法詳細資訊

update

void update(int b)
使用指定位元組更新當前校驗和。

參數:
b - 更新校驗和要使用的位元組

update

void update(byte[] b,
            int off,
            int len)
使用指定的位元組陣列更新當前校驗和。

參數:
b - 更新校驗和要使用的位元組陣列
off - 資料的初始偏移量
len - 用於更新的位元組數

getValue

long getValue()
返回當前的校驗和值。

返回:
當前的校驗和值

reset

void reset()
將校驗和重置為其初始值。


JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only