OSDN Git Service

Update coding rules
[dictzip-java/dictzip-java.git] / README.md
1 # dictzip-java
2 DictZip, GZip random access compression format(.dz), access library for Java
3
4 ## Usage
5
6 Extract archive in directory. If you want to use just library, `dictzip-lib.jar`
7 is an only file for you.
8 CLI is also made for example of API usage and will be a good reference.
9 Also there is a javadoc of DictZip at https://miurahr.github.io/dictzip-java
10
11 ## Build
12
13 DictZip for java uses Gradle for build system. You can build library and CLI
14 by typing command:
15
16 ```
17 $ gradle build
18 ```
19
20 You will find archive files at
21
22 ```
23 dictzip-cli/build/distributions/
24 ```
25
26 ## Contribution
27
28 As usual of other projects hosted on GitHub, DictZip for java also welcome
29 forking source and send modification as a Pull Request.
30 It is recommended to post an issue before sending a patch.
31
32
33 ## Copyrights
34
35 Copyright (C) 2001-2004 JDictd project.
36 Copyright (C) 2016 Hiroshi Miura
37
38 Some part of DictZip library code is come from a part of abandoned jdictd on java
39 by JDictd project.
40
41
42 ## license
43
44 Dictributed by GPL-2 and later.