Skip to content

Stwissel/Excel2XML

Repository files navigation

Excel2XML

Small utility that exports Excel lists to XML for easy processing with XSLT transformations.

Business loves to maintain all sorts of Excel lists. Excel sort and filter capabilities make this a conventient list store.

However when some more elaborate sorting and grouping is required and formatted reports are needed, Excel falls flat.

This utility, uses Apache POI to export an Excel file into a simplified XML format. This enables a simplified creation of XML stylesheets with XPath syntax.

Features

  • Extract workbooks in one or separate files per worksheet
  • Ignore all formatting
  • Computed cells return their last result values, unless it is a formula error, then the formula is returned
  • The first line of each sheet is treated as column headers, which are extracted as columns/column elements
  • Each cell has a column, a row and a title attribute. The title reflects the value from the first row. This allows in XSLT to query the title instead of relying on the column number. Reordering, adding or removing columns won't kill your XSLT stylesheet that way
  • Optional empty cells can be generated with an attribute of empty="true"
  • Runs on Java8 completely from command line
  • Calling it without parameters outputs the exact syntax of options

Syntax

java -jar excel2xml.jar -i somefile.xlsx [-o somefile.xml] [-e] [-t template.xslt] [-s] [-w3,4]

Parameters

  • -i the input file in xslx format
  • -o the output file. If missing same name as input, but extension xml
  • -e generate empty cells. If missing: cells without data are skipped
  • -s generate a single file for the whole workbook. If missing: creates one file per sheet, uses sheet name as file name
  • -w comma separated list of sheets to export. Starts at 0. If missing: exports all sheets. Instead of sheet number, sheet names can be used
  • -t optional xslt template, will run against the XML. Adjust your output file name (extension) accordingly

This isn't a sophisticated tool, but an itch I had to scratch.

(C) 2017,2019 St. Wissel, for license see LICENSE file

About

Small utility that exports Excel lists to XML for easy processing with XSLT transformations

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages