Interface DynamicZipInputStream.Entry

  • Enclosing class:
    DynamicZipInputStream

    public static interface DynamicZipInputStream.Entry
    Represents a single entry from a ZIP files.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.io.InputStream getInputStream()
      Opens a new stream that can be used to read the contents of the entry.
      java.lang.String getName()
      Returns the name of the entry complete with path, equivalent to ZipEntry.getName().
    • Method Detail

      • getName

        java.lang.String getName()
        Returns the name of the entry complete with path, equivalent to ZipEntry.getName().
        Returns:
        the name of the entry
      • getInputStream

        java.io.InputStream getInputStream()
                                    throws java.io.IOException
        Opens a new stream that can be used to read the contents of the entry. The steam will be closed by the caller.
        Returns:
        the entry input stream
        Throws:
        java.io.IOException