本文整理了Java中org.apache.commons.compress.archivers.zip.ZipArchiveInputStream.readStoredEntry()
方法的一些代码示例,展示了ZipArchiveInputStream.readStoredEntry()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipArchiveInputStream.readStoredEntry()
方法的具体详情如下:
包路径:org.apache.commons.compress.archivers.zip.ZipArchiveInputStream
类名称:ZipArchiveInputStream
方法名:readStoredEntry
[英]Caches a stored entry that uses the data descriptor.
After calling this method the entry should know its size, the entry's data is cached and the stream is positioned at the next local file or central directory header.
[中]缓存使用数据描述符的存储条目。
*读取存储的条目,直到找到本地文件头、中心目录头或数据描述符的签名。
*将所有条目数据存储在lastStoredEntry中。
*将流倒回数据描述符处的位置。
*读取数据描述符
调用此方法后,条目应该知道其大小,条目的数据被缓存,流被定位到下一个本地文件或中心目录头。
代码示例来源:origin: org.apache.commons/commons-compress
readStoredEntry();
代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded
readStoredEntry();
内容来源于网络,如有侵权,请联系作者删除!