private static byte[] read(DataInputStreamEx dataInputStream, byte[] bytes, int off, int len) throws IOException { dataInputStream.read(bytes, off, len); return bytes; }
private static byte[] read(DataInputStreamEx dataInputStream, byte[] bytes) throws IOException { dataInputStream.read(bytes); return bytes; }