File: README

package info (click to toggle)
jzlib 1.1.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 608 kB
  • sloc: java: 5,293; xml: 35; makefile: 3
file content (29 lines) | stat: -rw-r--r-- 888 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

README of example directory
====================================================================
Last modified: Wed Dec 20 05:54:08 UTC 2000

This directory contains some examples, which demonstrate how to use JZlib.

- test_deflate_inflate.java
  This program tests deflate/inflate with small buffers.

- test_large_deflate_inflate.java
  This program tests deflate/inflate with large buffers and
  dynamic change of compression level

- test_dict_deflate_inflate.java
  This program tests deflate/inflate with preset dictionary.

- test_flush_sync
  This program tests deflate/inflate with full flush.

- test_stream_deflate_inflate.java
  This program tests deflate/inflate for I/O stream.

For example, if you want to compile and run 'test_deflate_inflate.java',
try following steps.

  $ javac -classpath .. test_deflate_inflate.java
  $ javac -classpath ..:. test_deflate_inflate