GroupDocs.Parser for Java provides the functionality to export data to XML files. XmlExporter class is used for this.
The following example shows how to extract barcodes from a document and export them to the XML file:
// Create an instance of Parser class
try(Parserparser=newParser(Constants.SamplePdfWithBarcodes)){// Check if the document supports barcodes extraction
if(!parser.getFeatures().isBarcodes()){System.out.println("Document doesn't support barcodes extraction.");return;}// Create the options which are used for barcodes extraction
BarcodeOptionsoptions=newBarcodeOptions(QualityMode.Low,QualityMode.Low,"QR");// Extract barcodes from the document
Iterable<PageBarcodeArea>barcodes=parser.getBarcodes(options);// Export data to "data.xml" file
XmlExporterexporter=newXmlExporter();exporter.exportBarcodes(barcodes,"data.xml");}
More resources
GitHub examples
You may easily run the code above and see the feature in action in our GitHub examples:
Along with full featured .NET library we provide simple, but powerful free Apps.
You are welcome to parse documents and extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online Free Online Document Parser App.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.