org.apache.commons.compress.archivers.zip.ZipArchiveInputStream.cacheBytesRead()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(126)

本文整理了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

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);

相关文章