public class Zip extends AbstractArchiveTask
修飾子とタイプ | クラスと説明 |
---|---|
protected class |
Zip.ZipCopyActionImpl
非推奨です。
|
Task.Namer
修飾子とタイプ | フィールドと説明 |
---|---|
static String |
ZIP_EXTENSION |
TASK_ACTION, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
コンストラクタと説明 |
---|
Zip() |
修飾子とタイプ | メソッドと説明 |
---|---|
protected org.gradle.api.internal.file.copy.CopyAction |
createCopyAction() |
protected org.gradle.api.internal.file.copy.ZipCompressor |
getCompressor() |
ZipEntryCompression |
getEntryCompression()
Returns the compression level of the entries of the archive.
|
boolean |
isZip64()
Whether the zip can contain more than 65535 files and/or support files greater than 4GB in size.
|
void |
setEntryCompression(ZipEntryCompression entryCompression)
Sets the compression level of the entries of the archive.
|
void |
setZip64(boolean allowZip64)
Enables building zips with more than 65535 files or bigger than 4GB.
|
getAppendix, getArchiveName, getArchivePath, getBaseName, getClassifier, getDestinationDir, getExtension, getVersion, into, into, setAppendix, setArchiveName, setBaseName, setClassifier, setDestinationDir, setExtension, setVersion
copy, createRootSpec, eachFile, eachFile, exclude, exclude, exclude, exclude, expand, filesMatching, filesNotMatching, filter, filter, filter, from, from, getDirMode, getDuplicatesStrategy, getExcludes, getFileLookup, getFileMode, getFileResolver, getFileSystem, getIncludeEmptyDirs, getIncludes, getInstantiator, getMainSpec, getRootSpec, getSource, include, include, include, include, isCaseSensitive, rename, rename, rename, setCaseSensitive, setDirMode, setDuplicatesStrategy, setExcludes, setFileMode, setIncludeEmptyDirs, setIncludes, with
conventionMapping, conventionMapping, getConventionMapping
addValidator, compareTo, configure, deleteAllActions, dependsOn, dependsOnTaskDidWork, doFirst, doFirst, doLast, doLast, execute, executeWithoutThrowingTaskFailure, finalizedBy, getActions, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDidWork, getEnabled, getExecuter, getExtensions, getFinalizedBy, getGroup, getImpliesSubProjects, getInputs, getLogger, getLogging, getMustRunAfter, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getShouldRunAfter, getStandardOutputCapture, getState, getTaskActions, getTaskDependencies, getTemporaryDir, getTemporaryDirFactory, getValidators, hasProperty, injectIntoNewInstance, isEnabled, leftShift, mustRunAfter, onlyIf, onlyIf, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setExecuter, setFinalizedBy, setGroup, setImpliesSubProjects, setMustRunAfter, setName, setOnlyIf, setOnlyIf, setProject, setProperty, setShouldRunAfter, shouldRunAfter, toString
protected org.gradle.api.internal.file.copy.ZipCompressor getCompressor()
protected org.gradle.api.internal.file.copy.CopyAction createCopyAction()
createCopyAction
クラス内 AbstractCopyTask
public ZipEntryCompression getEntryCompression()
ZipEntryCompression.DEFLATED
(the default), each entry is
compressed using the DEFLATE algorithm. If set to ZipEntryCompression.STORED
the entries of the archive are left uncompressed.public void setEntryCompression(ZipEntryCompression entryCompression)
ZipEntryCompression.DEFLATED
(the default), each entry is
compressed using the DEFLATE algorithm. If set to ZipEntryCompression.STORED
the entries of the archive are left uncompressed.entryCompression
- STORED
or DEFLATED
@Incubating public void setZip64(boolean allowZip64)
isZip64()
@Incubating public boolean isZip64()
The standard zip format has hard limits on file size and count. The Zip64 format extension practically removes these limits and is therefore required for building large zips.
However, not all Zip readers support the Zip64 extensions.
Notably, the ZipInputStream
JDK class does not support Zip64 for versions earlier than Java 7.
This means you should not enable this property if you are building JARs to be used with Java 6 and earlier runtimes.