I know that Java natively supports the ability to navigate through and ope files compressed within a ZIP file, as that is what a JAR file is. How can I utilize this to make and manage a ZIP-based file (for saving a program's state)?

Please note that the project I am working on aims to complete its goal WITHOUT ANY EXTERNAL LIBRARIES. All libraries must be already included in Java 1.6 or 1.7.

link|improve this question

70% accept rate
feedback

3 Answers

up vote 4 down vote accepted

You can use the java.util.zip package, part of the Java standard library since JDK 1.1.

link|improve this answer
How did I miss that? facepalm – Supuhstar Feb 26 '11 at 7:23
feedback

See java.util.zip.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.