Load document from URL
Following example demonstrates how to load document from URL.
String url = "https://github.com/groupdocs-merger/GroupDocs.Merger-for-Java/blob/master/Examples/Resources/SampleFiles/Pdf/sample.pdf?raw=true";
try {
InputStream stream = new java.net.URL(url).openStream();
LoadOptions loadOptions = new LoadOptions(FileType.PDF);
Merger merger = new Merger(stream, loadOptions);
System.out.print("Document loaded from URL successfully.");
} catch ( Exception e){
throw new GroupDocsMergerException(e.getMessage());
}
More resources
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
- GroupDocs.Merger for .NET examples, plugins and showcase
- GroupDocs.Merger for Java examples, plugins and showcase
Free Online App
Along with full featured Java library we provide simple, but powerful free Apps. You are welcome to merge your documents with our free online GroupDocs Merger App.