Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
JAR (Java ARchive) File Format Specification
What Is Specifiction of JAR (Java ARchive) File Format?
✍: FYIcenter.com
JAR (Java ARchive) is a platform-independent file format that aggregates many files into one file. The specification of JAR file format is divided into several areas:
1. JAR Internal Archive Structure - When files and folders are archived into a JAR file, folder names, file names, file sizes and timestamps will recorded in the same way as the ZIP file format.
2. File Compression - When files are archived into a JAR file, them can be compressed in the same way as the ZIP file format.
3. Java Class File Locations - When JVM tries to load a Java class file from a JAR file, it will use the class package name as the file path name to locate the class file. For example, when JVM tries to load com.sun.activation.viewers.ImageViewer class from the activation.jar file, it will search for com/sun/activation/viewers/ImageViewer.class file in the JAR file.
4. Manifest File - A JAR file can provide a manifest file at the META-INF/MANIFEST.MF location to define extension and package related data. See manifest file specification for more details.
5. Index File - A JAR file can provide an index file at the META-INF/INDEX.LIST location to be used by class loaders to speed up their class loading process.
5. Signature Files - A JAR file can provide a pair of META-INF/x.SF and META-INF/x.DSA to store signature related information.
6. Service Configuration Files - A JAR file can provide service configuration files under the META-INF/services path name to configure mappings between services interfaces and abstract classes to implementation classes.
For more details, see JAR File Specification page provided by Oracle.
2016-04-23, 1551👍, 0💬
Popular Posts:
JasperReports, the world's most popular open source business intelligence and reporting engine and J...
How to read XML document from socket connections with the socket\DelayedInput.java provided in the A...
JDK 11 java.desktop.jmod is the JMOD file for JDK 11 Desktop module. JDK 11 Desktop module compiled ...
What is jxl.jar 2.6.12? jxl.jar 2.6.12 is the JAR file for Java Excel API 2.6.12, which is a Java li...
ASM is an all purpose Java bytecode manipulation and analysis framework. It can be used to modify ex...