|
|
|
|
ZIP files and JAR files are very useful, and are heavily used in Java. For example, in JDK 1.5, the code for the Java class library may be found in a ZIP file src.zip (in the top level directory for the JDK installation). When loading a Java program (application or
applet), it is more efficient to load from a ZIP or JAR file
-- only one file needs to be opened and read, rather than
many different So it stands to reason that Java contains a number of classes that are used to read and write ZIP and JAR files. Here's how you can do this yourself...
|
| The page was last updated February 19, 2008 |