Uses of Class
java.util.jar.Attributes
-
Packages that use Attributes 软件包 描述 java.net 提供实现网络应用程序的类。java.util.jar 提供用于读取和写入JAR(Java ARchive)文件格式的类,该文件格式基于具有可选清单文件的标准ZIP文件格式。 -
-
Uses of Attributes in java.net
Methods in java.net that return Attributes Modifier and Type 方法 描述 Attributes
JarURLConnection. getAttributes()
如果该连接的URL指向JAR文件条目,则返回此连接的Attributes对象,否则返回null。Attributes
JarURLConnection. getMainAttributes()
返回此连接的JAR文件的主要属性。 -
Uses of Attributes in java.util.jar
Methods in java.util.jar that return Attributes Modifier and Type 方法 描述 Attributes
JarEntry. getAttributes()
返回Manifest
Attributes
此条,或null
如果没有。Attributes
Manifest. getAttributes(String name)
返回指定条目名称的属性。Attributes
Manifest. getMainAttributes()
返回清单的主要属性。Methods in java.util.jar that return types with arguments of type Attributes Modifier and Type 方法 描述 Map<String,Attributes>
Manifest. getEntries()
返回此清单中包含的条目的地图。Constructors in java.util.jar with parameters of type Attributes Constructor 描述 Attributes(Attributes attr)
构造具有与指定属性中相同的属性名称 - 值映射的新Attributes对象。
-