gpt4 book ai didi

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

转载 作者:知者 更新时间:2024-03-17 09:34:40 30 4
gpt4 key购买 nike

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

ZipArchiveEntry.setSize介绍

[英]Sets the uncompressed size of the entry data.
[中]设置输入数据的未压缩大小。

代码示例

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

/**
 * Creates a new zip entry taking some information from the given
 * file and using the provided name.
 *
 * <p>The name will be adjusted to end with a forward slash "/" if
 * the file is a directory.  If the file is not a directory a
 * potential trailing forward slash will be stripped from the
 * entry name.</p>
 * @param inputFile file to create the entry from
 * @param entryName name of the entry
 */
public ZipArchiveEntry(final File inputFile, final String entryName) {
  this(inputFile.isDirectory() && !entryName.endsWith("/") ?
     entryName + "/" : entryName);
  if (inputFile.isFile()){
    setSize(inputFile.length());
  }
  setTime(inputFile.lastModified());
  // TODO are there any other fields we can set here?
}

代码示例来源:origin: jphp-group/jphp

@Setter
  public void setSize(long size) {
    getWrappedObject().setSize(size);
  }
}

代码示例来源:origin: jphp-group/jphp

@Signature
public void __construct(String name, long size) {
  __wrappedObject = new ZipArchiveEntry(name);
  getWrappedObject().setSize(size);
}

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

/**
   * Update the original {@link ZipArchiveEntry} with sizes/crc
   * Do not use this methods from threads that did not create the instance itself !
   * @return the zipArchiveEntry that is basis for this request
   */
  public ZipArchiveEntry transferToArchiveEntry(){
    final ZipArchiveEntry entry = zipArchiveEntryRequest.getZipArchiveEntry();
    entry.setCompressedSize(compressedSize);
    entry.setSize(size);
    entry.setCrc(crc);
    entry.setMethod(zipArchiveEntryRequest.getMethod());
    return entry;
  }
}

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

/**
 * Records whether a Zip64 extra is present and sets the size
 * information from it if sizes are 0xFFFFFFFF and the entry
 * doesn't use a data descriptor.
 */
private void processZip64Extra(final ZipLong size, final ZipLong cSize) {
  final Zip64ExtendedInformationExtraField z64 =
    (Zip64ExtendedInformationExtraField)
    current.entry.getExtraField(Zip64ExtendedInformationExtraField.HEADER_ID);
  current.usesZip64 = z64 != null;
  if (!current.hasDataDescriptor) {
    if (z64 != null // same as current.usesZip64 but avoids NPE warning
        && (cSize.equals(ZipLong.ZIP64_MAGIC) || size.equals(ZipLong.ZIP64_MAGIC)) ) {
      current.entry.setCompressedSize(z64.getCompressedSize().getLongValue());
      current.entry.setSize(z64.getSize().getLongValue());
    } else {
      current.entry.setCompressedSize(cSize.getValue());
      current.entry.setSize(size.getValue());
    }
  }
}

代码示例来源:origin: plutext/docx4j

ze.setSize(bytes.length);
ze.setCompressedSize(bytes.length);

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

entry.entry.setSize(entry.bytesRead);
entry.entry.setCompressedSize(bytesWritten);
entry.entry.setCrc(crc);
entry.entry.setSize(bytesWritten);
entry.entry.setCompressedSize(bytesWritten);
entry.entry.setCrc(crc);

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

private void readDataDescriptor() throws IOException {
  readFully(wordBuf);
  ZipLong val = new ZipLong(wordBuf);
  if (ZipLong.DD_SIG.equals(val)) {
    // data descriptor with signature, skip sig
    readFully(wordBuf);
    val = new ZipLong(wordBuf);
  }
  current.entry.setCrc(val.getValue());
  // if there is a ZIP64 extra field, sizes are eight bytes
  // each, otherwise four bytes each.  Unfortunately some
  // implementations - namely Java7 - use eight bytes without
  // using a ZIP64 extra field -
  // https://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7073588
  // just read 16 bytes and check whether bytes nine to twelve
  // look like one of the signatures of what could follow a data
  // descriptor (ignoring archive decryption headers for now).
  // If so, push back eight bytes and assume sizes are four
  // bytes, otherwise sizes are eight bytes each.
  readFully(twoDwordBuf);
  final ZipLong potentialSig = new ZipLong(twoDwordBuf, DWORD);
  if (potentialSig.equals(ZipLong.CFH_SIG) || potentialSig.equals(ZipLong.LFH_SIG)) {
    pushback(twoDwordBuf, DWORD, DWORD);
    current.entry.setCompressedSize(ZipLong.getValue(twoDwordBuf));
    current.entry.setSize(ZipLong.getValue(twoDwordBuf, WORD));
  } else {
    current.entry.setCompressedSize(ZipEightByteInteger.getLongValue(twoDwordBuf));
    current.entry.setSize(ZipEightByteInteger.getLongValue(twoDwordBuf, DWORD));
  }
}

代码示例来源:origin: org.apache.poi/poi-ooxml

ZipArchiveEntry ze = en.nextElement();
ZipArchiveEntry zeOut = new ZipArchiveEntry(ze.getName());
zeOut.setSize(ze.getSize());
zeOut.setTime(ze.getTime());
zos.putArchiveEntry(zeOut);

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

ze.setSize(z64.getSize().getLongValue());
} else if (hasCompressedSize) {
  z64.setSize(new ZipEightByteInteger(ze.getSize()));

代码示例来源:origin: org.codehaus.plexus/plexus-archiver

ze.setSize( 0 );
ze.setMethod( ZipArchiveEntry.STORED );

代码示例来源:origin: stackoverflow.com

ZipArchiveEntry entry = new ZipArchiveEntry(name);
entry.setSize(size);
zipOutput.putNextEntry(entry);
zipOutput.write(contentOfEntry);
zipOutput.closeArchiveEntry();

代码示例来源:origin: com.haulmont.reports/reports-core

protected ArchiveEntry newStoredEntry(String name, byte[] data) {
  ZipArchiveEntry zipEntry = new ZipArchiveEntry(name);
  zipEntry.setSize(data.length);
  zipEntry.setCompressedSize(zipEntry.getSize());
  CRC32 crc32 = new CRC32();
  crc32.update(data);
  zipEntry.setCrc(crc32.getValue());
  return zipEntry;
}

代码示例来源:origin: com.haulmont.cuba/cuba-core

protected ArchiveEntry newStoredEntry(String name, byte[] data) {
  ZipArchiveEntry zipEntry = new ZipArchiveEntry(name);
  zipEntry.setSize(data.length);
  zipEntry.setCompressedSize(zipEntry.getSize());
  CRC32 crc32 = new CRC32();
  crc32.update(data);
  zipEntry.setCrc(crc32.getValue());
  return zipEntry;
}

代码示例来源:origin: com.haulmont.reports/reports-core

protected ArchiveEntry newStoredEntry(String name, byte[] data) {
  ZipArchiveEntry zipEntry = new ZipArchiveEntry(name);
  zipEntry.setSize(data.length);
  zipEntry.setCompressedSize(zipEntry.getSize());
  CRC32 crc32 = new CRC32();
  crc32.update(data);
  zipEntry.setCrc(crc32.getValue());
  return zipEntry;
}

代码示例来源:origin: com.haulmont.cuba/cuba-global

private static ArchiveEntry newTailArchive(String name, byte[] tail) {
  ZipArchiveEntry zipEntry = new ZipArchiveEntry(name);
  zipEntry.setSize(tail.length);
  zipEntry.setCompressedSize(zipEntry.getSize());
  CRC32 crc32 = new CRC32();
  crc32.update(tail);
  zipEntry.setCrc(crc32.getValue());
  return zipEntry;
}

代码示例来源:origin: com.haulmont.cuba/cuba-core

protected ArchiveEntry newStoredEntry(String name, byte[] data) {
    ZipArchiveEntry zipEntry = new ZipArchiveEntry(name);
    zipEntry.setSize(data.length);
    zipEntry.setCompressedSize(zipEntry.getSize());
    CRC32 crc32 = new CRC32();
    crc32.update(data);
    zipEntry.setCrc(crc32.getValue());
    return zipEntry;
  }
}

代码示例来源:origin: stackoverflow.com

byte[] zip(byte[] data, String filename) {
   ByteArrayOutputStream bos = new ByteArrayOutputStream();
   ZipArchiveOutputStream zos = new ZipArchiveOutputStream(bos);
   ZipArchiveEntry entry = new ZipArchiveEntry(filename);
   entry.setSize(data.length);
   zos.putArchiveEntry(entry);
   zos.write(data);
   zos.closeArchiveEntry();
   zos.close();
   bos.close();
   return bos.toByteArray();       
 }

代码示例来源:origin: com.haulmont.cuba/cuba-global

private static ArchiveEntry newArchive(File file) throws IOException {
  ZipArchiveEntry zipEntry = new ZipArchiveEntry(file.getName());
  zipEntry.setSize(file.length());
  zipEntry.setCompressedSize(zipEntry.getSize());
  zipEntry.setCrc(FileUtils.checksumCRC32(file));
  return zipEntry;
}

代码示例来源:origin: edu.jhu.hlt/acute

@Override
 public void addEntry(Archivable arch) throws IOException {
  final String fn = arch.getFileName();
  ZipArchiveEntry entry = new ZipArchiveEntry(fn);
  byte[] cbytes = arch.getBytes();
  entry.setSize(cbytes.length);
  this.zout.putArchiveEntry(entry);
  try (ByteArrayInputStream bis = new ByteArrayInputStream(cbytes)) {
   IOUtils.copy(bis, zout);
   this.zout.closeArchiveEntry();
  }
 }
}

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com