* @param bytes
* - at least two bytes
* @return
- * @throws IOException
+ * @throws IOException
*/
public static boolean isGzipStream(InputStream input) throws IOException
{
if (!input.markSupported())
{
- Cache.log.error("FileParse.izGzipStream: input stream must support mark/reset");
+ Cache.log.error(
+ "FileParse.izGzipStream: input stream must support mark/reset");
return false;
}
input.mark(4);
- byte[] bytes = { (byte) input.read(), (byte) input.read() }; // input.readNBytes(2);
+ byte[] bytes = new byte[2]; // input.readNBytes(2);
+ int read = input.read(bytes);
input.reset();
+ if (read != bytes.length)
+ {
+ return false;
+ }
if (bytes.length == 2)
{
int header = (bytes[0] & 0xff) | ((bytes[1] << 8) & 0xff00);