- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream.setMethod()
方法的一些代码示例,展示了ZipArchiveOutputStream.setMethod()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipArchiveOutputStream.setMethod()
方法的具体详情如下:
包路径:org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream
类名称:ZipArchiveOutputStream
方法名:setMethod
[英]Sets the default compression method for subsequent entries.
Default is DEFLATED.
[中]设置后续条目的默认压缩方法。
违约率下降。
代码示例来源:origin: apache/tika
public void writeTo(Map<String, byte[]> parts, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String, Object> httpHeaders, OutputStream entityStream) throws IOException, WebApplicationException {
ZipArchiveOutputStream zip = new ZipArchiveOutputStream(entityStream);
zip.setMethod(ZipArchiveOutputStream.STORED);
for (Map.Entry<String, byte[]> entry : parts.entrySet()) {
zipStoreBuffer(zip, entry.getKey(), entry.getValue());
}
zip.close();
}
}
代码示例来源:origin: org.codehaus.plexus/plexus-archiver
if ( isCompress() )
zipArchiveOutputStream.setMethod( ZipArchiveOutputStream.DEFLATED );
zipArchiveOutputStream.setMethod( ZipArchiveOutputStream.STORED );
代码示例来源:origin: org.codehaus.plexus/plexus-archiver
zipArchiveOutputStream.setEncoding( encoding );
zipArchiveOutputStream.setCreateUnicodeExtraFields( this.getUnicodeExtraFieldPolicy() );
zipArchiveOutputStream.setMethod(
doCompress ? ZipArchiveOutputStream.DEFLATED : ZipArchiveOutputStream.STORED );
代码示例来源:origin: com.haulmont.cuba/cuba-global
public static void writeArchivedLogToStream(File logFile, OutputStream outputStream) throws IOException {
if (!logFile.exists()) {
throw new FileNotFoundException();
}
File tempFile = File.createTempFile(FilenameUtils.getBaseName(logFile.getName()) + "_log_", ".zip");
ZipArchiveOutputStream zipOutputStream = new ZipArchiveOutputStream(tempFile);
zipOutputStream.setMethod(ZipArchiveOutputStream.DEFLATED);
zipOutputStream.setEncoding(ZIP_ENCODING);
ArchiveEntry archiveEntry = newArchive(logFile);
zipOutputStream.putArchiveEntry(archiveEntry);
FileInputStream logFileInput = new FileInputStream(logFile);
IOUtils.copyLarge(logFileInput, zipOutputStream);
logFileInput.close();
zipOutputStream.closeArchiveEntry();
zipOutputStream.close();
FileInputStream tempFileInput = new FileInputStream(tempFile);
IOUtils.copyLarge(tempFileInput, outputStream);
tempFileInput.close();
FileUtils.deleteQuietly(tempFile);
}
代码示例来源:origin: com.haulmont.reports/reports-core
protected byte[] zipContent(Map<String, Object> stringObjectMap) throws IOException {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
ZipArchiveOutputStream zipOutputStream = new ZipArchiveOutputStream(byteArrayOutputStream);
zipOutputStream.setMethod(ZipArchiveOutputStream.STORED);
zipOutputStream.setEncoding(ENCODING);
for (Map.Entry<String, Object> entry : stringObjectMap.entrySet()) {
byte[] data = (byte[]) entry.getValue();
ArchiveEntry archiveEntry = newStoredEntry(entry.getKey(), data);
zipOutputStream.putArchiveEntry(archiveEntry);
zipOutputStream.write(data);
zipOutputStream.closeArchiveEntry();
}
zipOutputStream.close();
return byteArrayOutputStream.toByteArray();
}
代码示例来源:origin: com.haulmont.cuba/cuba-core
@Override
public byte[] exportEntitiesToZIP(Collection<? extends Entity> entities) {
String json = entitySerialization.toJson(entities, null, EntitySerializationOption.COMPACT_REPEATED_ENTITIES);
byte[] jsonBytes = json.getBytes(StandardCharsets.UTF_8);
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
ZipArchiveOutputStream zipOutputStream = new ZipArchiveOutputStream(byteArrayOutputStream);
zipOutputStream.setMethod(ZipArchiveOutputStream.STORED);
zipOutputStream.setEncoding(StandardCharsets.UTF_8.name());
ArchiveEntry singleDesignEntry = newStoredEntry("entities.json", jsonBytes);
try {
zipOutputStream.putArchiveEntry(singleDesignEntry);
zipOutputStream.write(jsonBytes);
zipOutputStream.closeArchiveEntry();
} catch (Exception e) {
throw new RuntimeException("Error on creating zip archive during entities export", e);
} finally {
IOUtils.closeQuietly(zipOutputStream);
}
return byteArrayOutputStream.toByteArray();
}
代码示例来源:origin: com.haulmont.cuba/cuba-core
@Override
public byte[] exportFolder(Folder folder) throws IOException {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
ZipArchiveOutputStream zipOutputStream = new ZipArchiveOutputStream(byteArrayOutputStream);
zipOutputStream.setMethod(ZipArchiveOutputStream.STORED);
zipOutputStream.setEncoding(StandardCharsets.UTF_8.name());
String xml = createXStream().toXML(folder);
byte[] xmlBytes = xml.getBytes(StandardCharsets.UTF_8);
ArchiveEntry zipEntryDesign = newStoredEntry("folder.xml", xmlBytes);
zipOutputStream.putArchiveEntry(zipEntryDesign);
zipOutputStream.write(xmlBytes);
try {
zipOutputStream.closeArchiveEntry();
} catch (Exception ex) {
throw new RuntimeException(String.format("Exception occurred while exporting folder %s.", folder.getName()));
}
zipOutputStream.close();
return byteArrayOutputStream.toByteArray();
}
代码示例来源:origin: com.haulmont.cuba/cuba-global
public static void writeArchivedLogTailToStream(File logFile, OutputStream outputStream) throws IOException {
if (!logFile.exists()) {
throw new FileNotFoundException();
}
ZipArchiveOutputStream zipOutputStream = new ZipArchiveOutputStream(outputStream);
zipOutputStream.setMethod(ZipArchiveOutputStream.DEFLATED);
zipOutputStream.setEncoding(ZIP_ENCODING);
byte[] content = getTailBytes(logFile);
ArchiveEntry archiveEntry = newTailArchive(logFile.getName(), content);
zipOutputStream.putArchiveEntry(archiveEntry);
zipOutputStream.write(content);
zipOutputStream.closeArchiveEntry();
zipOutputStream.close();
}
代码示例来源:origin: osmlab/atlas
if (compress)
zout.setMethod(ZipArchiveOutputStream.DEFLATED);
zout.setMethod(ZipArchiveOutputStream.STORED);
代码示例来源:origin: com.haulmont.reports/reports-core
@Override
public byte[] exportReports(Collection<Report> reports) {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
ZipArchiveOutputStream zipOutputStream = new ZipArchiveOutputStream(byteArrayOutputStream);
try {
zipOutputStream.setMethod(ZipArchiveOutputStream.STORED);
zipOutputStream.setEncoding(ENCODING);
for (Report report : reports) {
try {
byte[] reportBytes = exportReport(report);
ArchiveEntry singleReportEntry = newStoredEntry(replaceForbiddenCharacters(report.getName()) + ".zip", reportBytes);
zipOutputStream.putArchiveEntry(singleReportEntry);
zipOutputStream.write(reportBytes);
zipOutputStream.closeArchiveEntry();
} catch (IOException e) {
throw new ReportingException(String.format("Exception occurred while exporting report [%s]", report.getName()), e);
}
}
} finally {
IOUtils.closeQuietly(zipOutputStream);
}
return byteArrayOutputStream.toByteArray();
}
代码示例来源:origin: com.haulmont.reports/reports-core
zipOutputStream.setMethod(ZipArchiveOutputStream.STORED);
zipOutputStream.setEncoding(ReportImportExport.ENCODING);
代码示例来源:origin: com.haulmont.reports/reports-core
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
ZipArchiveOutputStream zipOutputStream = new ZipArchiveOutputStream(byteArrayOutputStream);
zipOutputStream.setMethod(ZipArchiveOutputStream.STORED);
zipOutputStream.setEncoding(ENCODING);
最近几天我一直在努力学习类和对象,我意识到在构造函数中使用“this.set”和“set”并没有明显的区别。澄清 public Movie(String title,String director,
本文整理了Java中ij.plugin.ZProjector.setMethod()方法的一些代码示例,展示了ZProjector.setMethod()的具体用法。这些代码示例主要来源于Github
我有兴趣为泛型函数设置新方法。例如,假设我有一个新类(class)(例如 coolClass)。我可以编写一个包装器来计算该类的 log10 并使用以下代码轻松设置该方法: setMethod("Ma
本文整理了Java中java.util.zip.ZipOutputStream.setMethod()方法的一些代码示例,展示了ZipOutputStream.setMethod()的具体用法。这些代
本文整理了Java中java.util.zip.ZipEntry.setMethod()方法的一些代码示例,展示了ZipEntry.setMethod()的具体用法。这些代码示例主要来源于Github
为标题道歉,不知道如何表达这个问题。 如果我想创建 setMethod在一个类(class)上如何区分mat[i,]的类似情况和 mat[i] ? 我知道我可以使用的前者: setMethod("["
题 在 r 中编程时与 s4 OOP系统,何时必须使用 setReplaceMethod ? 我看不出和 setMethod 有什么区别添加时 setReplaceMethod function (
我尝试使用传入的参数创建一个新对象,然后使用该新对象放置在下面列出的 setCarColor 方法中。但是我的构造函数中的 setCarColor 为我的 clv 变量提供了错误。它说“找不到符号”。
我正在尝试创建一个类Tax,它使用扫描仪变量从用户获取工资和税率,并使用用户的输入给出税后工资。 我收到的错误是 set-method 不能用于使用扫描仪变量。请提出解决方案。 代码如下:- pack
浏览 System.Linq.Expressions 的 .NET 核心源代码,我发现以下代码位于 here : MethodInfo mi = property.GetGetMethod(true)
本文整理了Java中org.apache.tools.zip.ZipOutputStream.setMethod()方法的一些代码示例,展示了ZipOutputStream.setMethod()的具
本文整理了Java中de.schlichtherle.truezip.zip.ZipEntry.setMethod()方法的一些代码示例,展示了ZipEntry.setMethod()的具体用法。这些
基本上,当 setMethod 或 (setGeneric) 中有很多参数时,它的运行速度会非常慢。 这是一个基本示例: setClassUnion(name = "mNumeric", member
所以,PropertyInfo 有一个 GetSetMethod 方法,它返回这个属性的 setter 方法。它还有一个 SetMethod 属性(据我所知)。 我问这个是因为如果属性不是公共(pub
经过几个小时的教程和谷歌搜索,我知道当我们在头文件中定义一个属性时,编译器会自动生成 setter 和 getter,这里是一个例子: “example.h” @property(strong,non
本文整理了Java中org.mozilla.zest.core.v1.ZestRequest.setMethod()方法的一些代码示例,展示了ZestRequest.setMethod()的具体用法。
我正在使用 setMethod 来覆盖不同类的对象的“摘要”函数。 最初,我使用了这种方法: setMethod('summary', "class_1", function(o
本文整理了Java中org.apache.commons.compress.archivers.zip.ZipArchiveOutputStream.setMethod()方法的一些代码示例,展示了Z
本文整理了Java中org.apache.commons.compress.archivers.zip.ZipArchiveEntry.setMethod()方法的一些代码示例,展示了ZipArchi
我有一些现有代码可以创建 Epub 2 格式的 zip 文件,它可以正常工作。 在尝试更新我的代码以支持 Epub 3 格式时,我想我会尝试使用 Java NIO Zip 文件系统而不是 java.u
我是一名优秀的程序员,十分优秀!