- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.apache.tools.zip.ZipOutputStream.setUseZip64()
方法的一些代码示例,展示了ZipOutputStream.setUseZip64()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZipOutputStream.setUseZip64()
方法的具体详情如下:
包路径:org.apache.tools.zip.ZipOutputStream
类名称:ZipOutputStream
方法名:setUseZip64
[英]Whether Zip64 extensions will be used.
When setting the mode to Zip64Mode#Never, #putNextEntry, #closeEntry, #finish or #close may throw a Zip64RequiredException if the entry's size or the total size of the archive exceeds 4GB or there are more than 65536 entries inside the archive. Any archive created in this mode will be readable by implementations that don't support Zip64.
When setting the mode to Zip64Mode#Always, Zip64 extensions will be used for all entries. Any archive created in this mode may be unreadable by implementations that don't support Zip64 even if all its contents would be.
When setting the mode to Zip64Mode#AsNeeded, Zip64 extensions will transparently be used for those entries that require them. This mode can only be used if the uncompressed size of the ZipEntry is known when calling #putNextEntry or the archive is written to a seekable output (i.e. you have used the #ZipOutputStream(java.io.File)) - this mode is not valid when the output stream is not seekable and the uncompressed size is unknown when #putNextEntry is called.
If no entry inside the resulting archive requires Zip64 extensions then Zip64Mode#Never will create the smallest archive. Zip64Mode#AsNeeded will create a slightly bigger archive if the uncompressed size of any entry has initially been unknown and create an archive identical to Zip64Mode#Never otherwise. Zip64Mode#Always will create an archive that is at least 24 bytes per entry bigger than the one Zip64Mode#Never would create.
Defaults to Zip64Mode#AsNeeded unless #putNextEntry is called with an entry of unknown size and data is written to a non-seekable stream - in this case the default is Zip64Mode#Never.
[中]是否将使用Zip64扩展。
将模式设置为Zip64Mode时,如果条目大小或归档文件的总大小超过4GB,或者归档文件中的条目超过65536条,则可能会抛出Zip64RequiredException。在这种模式下创建的任何存档都可以被不支持Zip64的实现读取。
将模式设置为Zip64Mode#Always时,所有条目都将使用Zip64扩展名。不支持Zip64的实现可能无法读取在此模式下创建的任何存档,即使其所有内容都将被删除。
根据需要将模式设置为Zip64Mode#时,Zip64扩展将透明地用于需要它们的条目。只有在调用#putNextEntry时已知ZipEntry的未压缩大小,或者将存档写入可查找的输出(即,您使用了#ZipOutputStream(java.io.File))-当输出流不可查找且调用#putNextEntry时未知未压缩大小时,此模式无效。
如果生成的存档中没有条目需要Zip64扩展,那么Zip64Mode#永远不会创建最小的存档。如果任何条目的未压缩大小最初未知,Zip64Mode#根据需要将创建稍大的存档,并创建与Zip64Mode#完全相同的存档。Zip64Mode#总是会创建一个存档,每个条目至少有24字节,比Zip64Mode#永远不会创建的大。
默认为Zip64Mode#根据需要,除非使用未知大小的条目调用#putNextEntry,并将数据写入不可查找的流——在这种情况下,默认为Zip64Mode#Never。
代码示例来源:origin: jenkinsci/jenkins
ZipArchiver(OutputStream out) {
zip = new ZipOutputStream(out);
zip.setEncoding(System.getProperty("file.encoding"));
zip.setUseZip64(Zip64Mode.AsNeeded);
}
代码示例来源:origin: org.apache.ant/ant
zOut.setUseZip64(getZip64Mode().getMode());
if (isCompress()) {
zOut.setMethod(ZipOutputStream.DEFLATED);
代码示例来源:origin: org.apache.ant/ant
? ZipOutputStream.DEFLATED : ZipOutputStream.STORED);
zOut.setLevel(level);
zOut.setUseZip64(zip64Mode.getMode());
代码示例来源:origin: org.gradle/gradle-core
public ZipOutputStream createArchiveOutputStream(File destination) throws IOException {
ZipOutputStream outStream = new ZipOutputStream(destination);
try {
outStream.setUseZip64(zip64Mode);
outStream.setMethod(entryCompressionMethod);
return outStream;
} catch (Exception e) {
IOUtils.closeQuietly(outStream);
String message = String.format("Unable to create ZIP output stream for file %s.", destination);
throw new UncheckedIOException(message, e);
}
}
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!