gpt4 book ai didi

de.schlichtherle.truezip.fs.archive.zip.ZipOutputShop.()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-13 10:42:14 26 4
gpt4 key购买 nike

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

ZipOutputShop.<init>介绍

暂无

代码示例

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

/**
   * This implementation returns a new {@link ZipOutputShop}.
   * This restricts the number of concurrent output entry streams to one in
   * order to inhibit writing unencrypted temporary files for buffering the
   * written entries.
   */
  @Override
  protected OutputShop<ZipDriverEntry> newOutputShop(
      FsModel model,
      OutputStream out,
      ZipInputShop source)
  throws IOException {
    return new ZipOutputShop(this, model, out, source);
  }
}

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

@CreatesObligation
  @edu.umd.cs.findbugs.annotations.SuppressWarnings("OBL_UNSATISFIED_OBLIGATION")
  protected OutputShop<ZipDriverEntry> newOutputShop(
      FsModel model,
      @WillCloseWhenClosed OutputStream out,
      @CheckForNull @WillNotClose ZipInputShop source)
  throws IOException {
    return new MultiplexedOutputShop<ZipDriverEntry>(
        new ZipOutputShop(this, model, out, source),
        getPool());
  }
}

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

@Override
  @edu.umd.cs.findbugs.annotations.SuppressWarnings("OBL_UNSATISFIED_OBLIGATION")
  protected OutputShop<ZipDriverEntry> newOutputShop(
      final FsModel model,
      final OutputStream out,
      final ZipInputShop source)
  throws IOException {
    final ZipOutputShop shop = new ZipOutputShop(this, model, out, source);
    final IOPool<?> pool = getPool();
    return null != source && source.isAppendee()
        ? new MultiplexedOutputShop<ZipDriverEntry>(shop, pool)
        : new OdfOutputShop(shop, pool);
  }
}

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