DOC

io.github.tsabirgaliev : zip

Maven & Gradle

Mar 20, 2017

Lazy streaming zip · The Java JDK includes various means of creating/consuming compressed files. What is missing is easy way of creating lazy streamed zip archive, in spirit of java.util.zip.DeflaterInputStream. This implementation relies on the fact that the PKZIP specification allows archiving data streams of sizes not known upfront. This implies that the archives produced will be readable only by tools aware of this trick. Notably, java.util.zip.ZipInputStream is OK with that, so we use it to test compatibility.

Table Of Contents

Latest Version

Download io.github.tsabirgaliev : zip Javadoc & API Documentation - Latest Versions:

All Versions

Download io.github.tsabirgaliev : zip Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
1.0.x

How to open Javadoc JAR file in web browser

  1. Rename the file zip-1.0.0.Beta3-javadoc.jar to zip-1.0.0.Beta3-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder zip-1.0.0.Beta3-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "zip-1.0.0.Beta3-sources.jar" -d "zip-1.0.0.Beta3-javadoc" -subpackages