Uses of Class
java.util.jar.Manifest
Package | Description |
---|---|
java.net |
Provides the classes for implementing networking applications.
|
java.util.jar |
Provides classes for reading and writing the JAR (Java ARchive)
file format, which is based on the standard ZIP file format with an
optional manifest file.
|
-
Uses of Manifest in java.net
Methods in java.net that return Manifest Modifier and Type Method Description Manifest
JarURLConnection. getManifest()
Returns the Manifest for this connection, or null if none. -
Uses of Manifest in java.util.jar
Methods in java.util.jar that return Manifest Modifier and Type Method Description Manifest
JarFile. getManifest()
Returns the jar file manifest, ornull
if none.Manifest
JarInputStream. getManifest()
Returns theManifest
for this JAR file, ornull
if none.Constructors in java.util.jar with parameters of type Manifest Constructor Description JarOutputStream(OutputStream out, Manifest man)
Creates a newJarOutputStream
with the specifiedManifest
.Manifest(Manifest man)
Constructs a new Manifest that is a copy of the specified Manifest.