本文整理了Java中org.apache.commons.compress.archivers.zip.ZipArchiveInputStream.bufferContainsSignature()
方法的一些代码示例,展示了ZipArchiveInputStream.bufferContainsSignature()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipArchiveInputStream.bufferContainsSignature()
方法的具体详情如下:
包路径:org.apache.commons.compress.archivers.zip.ZipArchiveInputStream
类名称:ZipArchiveInputStream
方法名:bufferContainsSignature
[英]Checks whether the current buffer contains the signature of a "data descriptor", "local file header" or "central directory entry".
If it contains such a signature, reads the data descriptor and positions the stream right after the data descriptor.
[中]检查当前缓冲区是否包含“数据描述符”、“本地文件头”或“中央目录项”的签名。
如果它包含这样的签名,则读取数据描述符并将流定位在数据描述符的正后方。
代码示例来源:origin: org.apache.commons/commons-compress
done = bufferContainsSignature(bos, off, r, ddLen);
if (!done) {
off = cacheBytesRead(bos, off, r, ddLen);
代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded
done = bufferContainsSignature(bos, off, r, ddLen);
if (!done) {
off = cacheBytesRead(bos, off, r, ddLen);
内容来源于网络,如有侵权,请联系作者删除!