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

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

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

ZipArchiveInputStream.readStoredEntry介绍

[英]Caches a stored entry that uses the data descriptor.

  • Reads a stored entry until the signature of a local file header, central directory header or data descriptor has been found.
  • Stores all entry data in lastStoredEntry.
  • Rewinds the stream to position at the data descriptor.
  • reads 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();

相关文章