Interface ArchiveFile

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.Enumeration<? extends org.apache.commons.compress.archivers.ArchiveEntry> getEntries()
      Returns an enumeration with the archive files entries.
      java.io.InputStream getInputStream​(org.apache.commons.compress.archivers.ArchiveEntry entry)
      Returns an InputStream with the given entries contents.
    • Method Detail

      • getEntries

        java.util.Enumeration<? extends org.apache.commons.compress.archivers.ArchiveEntry> getEntries()
                                                                                                throws java.io.IOException
        Returns an enumeration with the archive files entries. Any element returned by the enumeration is an instance of ArchiveEntry.
        Throws:
        java.io.IOException
      • getInputStream

        java.io.InputStream getInputStream​(org.apache.commons.compress.archivers.ArchiveEntry entry)
                                    throws java.io.IOException
        Returns an InputStream with the given entries contents. org.apache.commons.compress.archivers.ArchiveEntry
        Throws:
        java.io.IOException