Class ZipDataSource

  • All Implemented Interfaces:
    DataSource

    public class ZipDataSource
    extends java.lang.Object
    implements DataSource
    DataSource implementation to read data from an entry in a zip or jar file.
    • Constructor Summary

      Constructors 
      Constructor Description
      ZipDataSource​(java.util.zip.ZipFile zipFile, java.util.zip.ZipEntry zipEntry)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      java.io.InputStream getInputStream()
      Get an InputStream on the source file.
      java.lang.String getNiceFileName​(boolean shortNames, java.lang.String inputFileName)
      Return a nice version of the filename.
      int hashCode()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ZipDataSource

        public ZipDataSource​(java.util.zip.ZipFile zipFile,
                             java.util.zip.ZipEntry zipEntry)
        Parameters:
        zipFile - the ZipFile
        zipEntry - the ZipEntry containing the file to read
    • Method Detail

      • getInputStream

        public java.io.InputStream getInputStream()
                                           throws java.io.IOException
        Description copied from interface: DataSource
        Get an InputStream on the source file.
        Specified by:
        getInputStream in interface DataSource
        Returns:
        the InputStream reading the source file
        Throws:
        java.io.IOException - if the file can't be opened
      • getNiceFileName

        public java.lang.String getNiceFileName​(boolean shortNames,
                                                java.lang.String inputFileName)
        Description copied from interface: DataSource
        Return a nice version of the filename.
        Specified by:
        getNiceFileName in interface DataSource
        Parameters:
        shortNames - true if short names are being used
        inputFileName - name of a "master" file this file is relative to
        Returns:
        String
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object