Class UnicodePathExtraField

java.lang.Object
org.apache.commons.compress.archivers.zip.AbstractUnicodeExtraField
org.apache.commons.compress.archivers.zip.UnicodePathExtraField
All Implemented Interfaces:
ZipExtraField

Info-ZIP Unicode Path Extra Field (0x7075):

Stores the UTF-8 version of the file name field as stored in the local header and central directory header.

See Also:
This class is not thread-safe
super-class is not thread-safe
  • Field Details

  • Constructor Details

    • UnicodePathExtraField

    • UnicodePathExtraField

      public UnicodePathExtraField(String name, byte[] bytes)
      Assemble as unicode path extension from the name given as text as well as the encoded bytes actually written to the archive.
      Parameters:
      name - The file name
      bytes - the bytes actually written to the archive
    • UnicodePathExtraField

      public UnicodePathExtraField(String text, byte[] bytes, int off, int len)
      Assemble as unicode path extension from the name given as text as well as the encoded bytes actually written to the archive.
      Parameters:
      text - The file name
      bytes - the bytes actually written to the archive
      off - The offset of the encoded file name in bytes.
      len - The length of the encoded file name or comment in bytes.
  • Method Details