本文整理了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>
暂无
代码示例来源: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);
}
}
内容来源于网络,如有侵权,请联系作者删除!