Uses of Class
java.util.jar.Manifest
Package
Description
Provides the classes for implementing networking applications.
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
Modifier and TypeMethodDescriptionJarURLConnection.getManifest()
Returns the Manifest for this connection, or null if none.Modifier and TypeMethodDescriptionprotected Package
URLClassLoader.definePackage
(String name, Manifest man, URL url) Defines a new package by name in thisURLClassLoader
. -
Uses of Manifest in java.util.jar
Modifier and TypeMethodDescriptionJarFile.getManifest()
Returns the jar file manifest, ornull
if none.JarInputStream.getManifest()
Returns theManifest
for this JAR file when it is the first entry in the stream (or the second entry if the first entry in the stream isMETA-INF/
and the second entry isMETA-INF/MANIFEST.MF
), ornull
otherwise.ModifierConstructorDescriptionJarOutputStream
(OutputStream out, Manifest man) Creates a newJarOutputStream
with the specifiedManifest
.Constructs a new Manifest that is a copy of the specified Manifest.