-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
34 lines (23 loc) · 1.08 KB
/
README
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
30
31
32
33
34
Xdelta implemented in java
Sourceforge project link: http://sourceforge.net/projects/javaxdelta.
This library implements Josh MacDonalds xdelta binary diff algorithm in java.
More information on this algorithm can be found at
http://sourceforge.net/projects/xdelta.
This implementation uses the GDIFF file format for storing binary deltas.
There is also a patcher that takes a source file and a patch file in this
format and produces the original file.
Requirements:
Note that in "2.0" (this current release), new requirements are:
* GNU Trove 2.0 or later is required. The package now uses GNU Trove's primitive
hashtable for storing checksum information. See:
http://sourceforge.net/project/showfiles.php?group_id=39235
* JDK 1.4 is now required for runtime for binary diffs.
* JDK 1.5 is required for the com.nothome.delta.text package
TODO:
- Possibly write stand-alone long-int hashtable
- Paging of checksum data
- Support JDK 1.4
Project Authors:
-Elias <[email protected]> (current maintainer)
-Torgeir <[email protected]>
Additional authors are mentioned in various source files.