1 18 19 package org.apache.tools.zip; 20 21 import java.util.zip.ZipException ; 22 23 33 public interface ZipExtraField { 34 35 40 ZipShort getHeaderId(); 41 42 48 ZipShort getLocalFileDataLength(); 49 50 56 ZipShort getCentralDirectoryLength(); 57 58 64 byte[] getLocalFileDataData(); 65 66 72 byte[] getCentralDirectoryData(); 73 74 83 void parseFromLocalFileData(byte[] data, int offset, int length) 84 throws ZipException ; 85 } 86 | Popular Tags |