Class LZMACompressorInputStream

    • Constructor Detail

      • LZMACompressorInputStream

        public LZMACompressorInputStream​(java.io.InputStream inputStream)
                                  throws java.io.IOException
        Creates a new input stream that decompresses LZMA-compressed data from the specified input stream.
        Parameters:
        inputStream - where to read the compressed data
        Throws:
        java.io.IOException - if the input is not in the .lzma format, the input is corrupt or truncated, the .lzma headers specify sizes that are not supported by this implementation, or the underlying inputStream throws an exception
      • LZMACompressorInputStream

        @Deprecated
        public LZMACompressorInputStream​(java.io.InputStream inputStream,
                                         int memoryLimitKiB)
                                  throws java.io.IOException
        Deprecated.
        Creates a new input stream that decompresses LZMA-compressed data from the specified input stream.
        Parameters:
        inputStream - where to read the compressed data
        memoryLimitKiB - Sets a working memory threshold in kibibytes (KiB). Processing throws MemoryLimitException if memory use is above this threshold.
        Throws:
        java.io.IOException - if the input is not in the .lzma format, the input is corrupt or truncated, the .lzma headers specify sizes that are not supported by this implementation, or the underlying inputStream throws an exception
        Since:
        1.14
    • Method Detail

      • matches

        public static boolean matches​(byte[] signature,
                                      int length)
        Checks if the signature matches what is expected for an LZMA file.
        Parameters:
        signature - the bytes to check
        length - the number of bytes to check
        Returns:
        true, if this stream is an LZMA compressed stream, false otherwise
        Since:
        1.10
      • available

        public int available()
                      throws java.io.IOException
        Overrides:
        available in class java.io.InputStream
        Throws:
        java.io.IOException
      • close

        public void close()
                   throws java.io.IOException
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Overrides:
        close in class java.io.InputStream
        Throws:
        java.io.IOException
      • read

        public int read()
                 throws java.io.IOException
        Specified by:
        read in class java.io.InputStream
        Throws:
        java.io.IOException
      • read

        public int read​(byte[] buf,
                        int off,
                        int len)
                 throws java.io.IOException
        Overrides:
        read in class java.io.InputStream
        Throws:
        java.io.IOException
      • skip

        public long skip​(long n)
                  throws java.io.IOException
        Overrides:
        skip in class java.io.InputStream
        Throws:
        java.io.IOException