108109110111112113114
dictSize |= (coder.properties[i + 1] & 0xffl) << (8 * i); } if (dictSize > LZMAInputStream.DICT_SIZE_MAX) { throw new IOException("Dictionary larger than 4GiB maximum size"); } return new LZMAInputStream(in, -1, propsByte, (int) dictSize); }
43444546474849
* by this implementation, or the underlying * <code>inputStream</code> throws an exception */ public LZMACompressorInputStream(InputStream inputStream) throws IOException { in = new LZMAInputStream(inputStream); }
112113114115116117118
dictSize |= (coder.properties[i + 1] << (8 * i)); } if (dictSize > LZMAInputStream.DICT_SIZE_MAX) { throw new IOException("Dictionary larger than 4GiB maximum size"); } return new LZMAInputStream(in, -1, propsByte, (int) dictSize); }