本文整理了Java中org.apache.commons.compress.archivers.zip.ZipArchiveInputStream.cacheBytesRead()
方法的一些代码示例,展示了ZipArchiveInputStream.cacheBytesRead()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipArchiveInputStream.cacheBytesRead()
方法的具体详情如下:
包路径:org.apache.commons.compress.archivers.zip.ZipArchiveInputStream
类名称:ZipArchiveInputStream
方法名:cacheBytesRead
[英]If the last read bytes could hold a data descriptor and an incomplete signature then save the last bytes to the front of the buffer and cache everything in front of the potential data descriptor into the given ByteArrayOutputStream.
Data descriptor plus incomplete signature (3 bytes in the worst case) can be 20 bytes max.
[中]如果最后读取的字节可能包含数据描述符和不完整的签名,则将最后的字节保存到缓冲区前面,并将潜在数据描述符前面的所有内容缓存到给定的ByteArrayOutputStream中。
数据描述符加上不完整的签名(最坏情况下为3字节)最多可以是20字节。
代码示例来源:origin: org.apache.commons/commons-compress
off = cacheBytesRead(bos, off, r, ddLen);
代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded
off = cacheBytesRead(bos, off, r, ddLen);
内容来源于网络,如有侵权,请联系作者删除!