Skip to content

Instantly share code, notes, and snippets.

@GroupDocsGists
Created March 27, 2023 06:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GroupDocsGists/dd3356869feced2b51877afa639f73e9 to your computer and use it in GitHub Desktop.
Save GroupDocsGists/dd3356869feced2b51877afa639f73e9 to your computer and use it in GitHub Desktop.
XML Viewer | Render XML using Java
// XML Viewer - Render XML file as PDF using Java
try (Viewer viewer = new Viewer("/path/document.xml"))
{
PdfViewOptions viewOptions = new PdfViewOptions("/path/XML-to-PDF.pdf");
viewer.view(viewOptions);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment