This page summarizes enhancements to the jar and zip support provided in JDK 6.

API changes


Two new compressed streams have been added:


For example, these can be useful if a client wants to send compressed data over a network. The data can be compressed into packets with DeflaterInputStream, and those packets written over the network connection. The receiving end then reads the compressed packets from the network connection, and decompresses them by writing to an InflaterOutputStream.

Implementation changes


On all platforms, zip files can contain more than 64k entries.


On Windows, some limitations have been removed:



Changes to the jar command


There are two changes to the behavior of the jar command:



Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.