Load file from stream

On this page

To avoid the saving stream as a file, GroupDocs.Comparison allows you to work with file streams directly.

To work with stream, follow these steps:

  1. Obtain file stream.
  2. Pass opened source file stream to the Comparer class constructor or pass opened target file stream to the add() method.

The following code snippet shows how to load file from stream:

try (Comparer comparer = new Comparer(sourceInputStream)) {
    comparer.add(targetInputStream);
    final Path resultPath = comparer.compare(resultOutputStream);
}

On this page