Load file from stream
In case when you have the file in the form of a stream. To avoid the overhead of saving stream as a file on disk, GroupDocs.Comparison provides a way to work with file streams directly.
The following are the steps to be followed:
- Obtain file stream;
- Pass opened source file stream to Comparer class constructor or pass opened target file stream to Add method.
Following code snippet describes how to load file from stream.
using (Stream sourceStream = File.OpenRead("source.docx"))
using (Stream targetStream = File.OpenRead("target.docx"))
{
using (Comparer comparer = new Comparer(sourceStream))
{
comparer.Add(targetStream);
comparer.Compare(File.Create("result.docx"));
}
}
More resources
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
- GroupDocs.Comparison for .NET examples, plugins, and showcase
- GroupDocs.Comparison for Java examples, plugins, and showcase
- Document Comparison for .NET MVC UI Example
- Document Comparison for .NET App WebForms UI Modern Example
- Document Comparison for Java App Dropwizard UI Modern Example
- Document Comparison for Java Spring UI Example
Free Online App
Along with full-featured .NET library we provide simple, but powerful free Apps.
You are welcome to compare your DOC or DOCX, XLS or XLSX, PPT or PPTX, PDF, EML, EMLX, MSG and other documents with free to use online GroupDocs Comparison App.