| Package | Description |
|---|---|
| io.sigpipe.jbsdiff |
This library is a native Java implementation of bsdiff
(http://www.daemonology.net/bsdiff/).
|
| io.sigpipe.jbsdiff.ui |
Provides UI functionality for the org.jbsdiff library.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
Diff.diff(byte[] oldBytes,
byte[] newBytes,
OutputStream out)
Using two different versions of a file, generate a bsdiff patch that can
be applied to the old file to create the new file.
|
static void |
Diff.diff(byte[] oldBytes,
byte[] newBytes,
OutputStream out,
DiffSettings settings)
Using two different versions of a file, generate a bsdiff patch that can
be applied to the old file to create the new file.
|
static void |
Patch.patch(byte[] old,
byte[] patch,
OutputStream out)
Using an old file and its accompanying patch, this method generates a new
(updated) file and writes it to an
OutputStream. |
| Modifier and Type | Method and Description |
|---|---|
static void |
FileUI.diff(File oldFile,
File newFile,
File patchFile) |
static void |
FileUI.diff(File oldFile,
File newFile,
File patchFile,
String compression) |
static void |
FileUI.patch(File oldFile,
File newFile,
File patchFile) |
Copyright © 2016 Colorado State University. All rights reserved.