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

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

本文整理了Java中org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream.usesDataDescriptor()方法的一些代码示例,展示了ZipArchiveOutputStream.usesDataDescriptor()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipArchiveOutputStream.usesDataDescriptor()方法的具体详情如下:
包路径:org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream
类名称:ZipArchiveOutputStream
方法名:usesDataDescriptor

ZipArchiveOutputStream.usesDataDescriptor介绍

暂无

代码示例

代码示例来源:origin: org.apache.commons/commons-compress

private void writeLocalFileHeader(final ZipArchiveEntry ze, final boolean phased) throws IOException {
  final boolean encodable = zipEncoding.canEncode(ze.getName());
  final ByteBuffer name = getName(ze);
  if (createUnicodeExtraFields != UnicodeExtraFieldPolicy.NEVER) {
    addUnicodeExtraFields(ze, encodable, name);
  }
  final long localHeaderStart = streamCompressor.getTotalBytesWritten();
  final byte[] localHeader = createLocalFileHeader(ze, name, encodable, phased, localHeaderStart);
  metaData.put(ze, new EntryMetaData(localHeaderStart, usesDataDescriptor(ze.getMethod(), phased)));
  entry.localDataStart = localHeaderStart + LFH_CRC_OFFSET; // At crc offset
  writeCounted(localHeader);
  entry.dataStart = streamCompressor.getTotalBytesWritten();
}

代码示例来源:origin: org.apache.commons/commons-compress

final boolean dataDescriptor = usesDataDescriptor(zipMethod, phased);

代码示例来源:origin: org.apache.commons/commons-compress

/**
 * Writes the data descriptor entry.
 * @param ze the entry to write
 * @throws IOException on error
 */
protected void writeDataDescriptor(final ZipArchiveEntry ze) throws IOException {
  if (!usesDataDescriptor(ze.getMethod(), false)) {
    return;
  }
  writeCounted(DD_SIG);
  writeCounted(ZipLong.getBytes(ze.getCrc()));
  if (!hasZip64Extra(ze)) {
    writeCounted(ZipLong.getBytes(ze.getCompressedSize()));
    writeCounted(ZipLong.getBytes(ze.getSize()));
  } else {
    writeCounted(ZipEightByteInteger.getBytes(ze.getCompressedSize()));
    writeCounted(ZipEightByteInteger.getBytes(ze.getSize()));
  }
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

private void writeLocalFileHeader(final ZipArchiveEntry ze, final boolean phased) throws IOException {
  final boolean encodable = zipEncoding.canEncode(ze.getName());
  final ByteBuffer name = getName(ze);
  if (createUnicodeExtraFields != UnicodeExtraFieldPolicy.NEVER) {
    addUnicodeExtraFields(ze, encodable, name);
  }
  final long localHeaderStart = streamCompressor.getTotalBytesWritten();
  final byte[] localHeader = createLocalFileHeader(ze, name, encodable, phased, localHeaderStart);
  metaData.put(ze, new EntryMetaData(localHeaderStart, usesDataDescriptor(ze.getMethod(), phased)));
  entry.localDataStart = localHeaderStart + LFH_CRC_OFFSET; // At crc offset
  writeCounted(localHeader);
  entry.dataStart = streamCompressor.getTotalBytesWritten();
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

final boolean dataDescriptor = usesDataDescriptor(zipMethod, phased);

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Writes the data descriptor entry.
 * @param ze the entry to write
 * @throws IOException on error
 */
protected void writeDataDescriptor(final ZipArchiveEntry ze) throws IOException {
  if (!usesDataDescriptor(ze.getMethod(), false)) {
    return;
  }
  writeCounted(DD_SIG);
  writeCounted(ZipLong.getBytes(ze.getCrc()));
  if (!hasZip64Extra(ze)) {
    writeCounted(ZipLong.getBytes(ze.getCompressedSize()));
    writeCounted(ZipLong.getBytes(ze.getSize()));
  } else {
    writeCounted(ZipEightByteInteger.getBytes(ze.getCompressedSize()));
    writeCounted(ZipEightByteInteger.getBytes(ze.getSize()));
  }
}

相关文章

ZipArchiveOutputStream类方法