de.schlichtherle.truezip.zip.ZipEntry.setEncrypted()方法的使用及代码示例

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

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

ZipEntry.setEncrypted介绍

[英]Sets the encryption flag for this ZIP entry. If you set this to true, you will also need to provide ZipOutputStream#setCryptoParameters(ZipCryptoParameters).

Note that only WinZipAesParameters is currently supported.
[中]设置此ZIP条目的加密标志。如果将其设置为true,则还需要提供ZipOutStream#setCryptoParameters(ZipCryptoParameters)。
请注意,目前只支持WinZipAesParameters。

代码示例

代码示例来源:origin: de.schlichtherle.truezip/truezip-driver-zip

@Override
public ZipEntry newEntry(String name) {
  ZipEntry entry = new ZipEntry(name);
  entry.setEncrypted(true);
  return entry;
}

代码示例来源:origin: de.schlichtherle.truezip/truezip-driver-zip

/**
 * Sets the encryption property to {@code false} and removes any other
 * encryption artifacts, e.g. a WinZip AES extra field.
 *
 * @since TrueZIP 7.4
 * @see   <a href="http://java.net/jira/browse/TRUEZIP-176">#TRUEZIP-176</a>
 */
public final void clearEncryption() {
  setEncrypted(false);
  final WinZipAesEntryExtraField field
      = (WinZipAesEntryExtraField) removeExtraField(WINZIP_AES_ID);
  if (WINZIP_AES == getRawMethod())
    setRawMethod(null == field ? UNKNOWN : field.getMethod());
}

相关文章