Package org.apache.tools.zip
Class UnicodeCommentExtraField
java.lang.Object
org.apache.tools.zip.AbstractUnicodeExtraField
org.apache.tools.zip.UnicodeCommentExtraField
- All Implemented Interfaces:
ZipExtraField
Info-ZIP Unicode Comment Extra Field (0x6375):
Stores the UTF-8 version of the file comment as stored in the central directory header.
-
Field Summary
-
Constructor Summary
ConstructorDescriptionUnicodeCommentExtraField
(String comment, byte[] bytes) Assemble as unicode comment extension from the comment given as text as well as the bytes actually written to the archive.UnicodeCommentExtraField
(String text, byte[] bytes, int off, int len) Assemble as unicode comment extension from the name given as text as well as the encoded bytes actually written to the archive. -
Method Summary
Methods inherited from class org.apache.tools.zip.AbstractUnicodeExtraField
getCentralDirectoryData, getCentralDirectoryLength, getLocalFileDataData, getLocalFileDataLength, getNameCRC32, getUnicodeName, parseFromLocalFileData, setNameCRC32, setUnicodeName
-
Field Details
-
UCOM_ID
-
-
Constructor Details
-
UnicodeCommentExtraField
public UnicodeCommentExtraField() -
UnicodeCommentExtraField
Assemble as unicode comment extension from the name given as text as well as the encoded bytes actually written to the archive.- Parameters:
text
- The file namebytes
- the bytes actually written to the archiveoff
- The offset of the encoded comment inbytes
.len
- The length of the encoded comment or comment inbytes
.
-
UnicodeCommentExtraField
Assemble as unicode comment extension from the comment given as text as well as the bytes actually written to the archive.- Parameters:
comment
- The file commentbytes
- the bytes actually written to the archive
-
-
Method Details
-
getHeaderId
-