示例#1
0
 public void write(OutputStream os) throws IOException {
   IOUtils.writeIntMM(os, (int) length);
   IOUtils.writeIntMM(os, chunkType.getValue());
   IOUtils.write(os, data);
   IOUtils.writeIntMM(os, (int) crc);
 }
示例#2
0
 public boolean isValidCRC() {
   return (calculateCRC(chunkType.getValue(), data) == crc);
 }