I'm producing a XML using several steps and, in the end, due to the complexity of the XML (nested inside nested inside nested) I had to use a Text File Output Step and just change the 'Extension' option to '.xml'.
The problem is I'm getting a one line .xml file insted of a well formatted XML; If I copy-paste that one line into an xmlFormatter online it works perfectly.
Is there any way of reading that one line file as a String and change it into a well shaped XML file?
Thanks in advance.
I would recommend using a User Defined Java Class step and write your own code to transform your XML one-liner into a pretty-printed version. Pentaho already comes with various library JARs for XML operations that you can use directly.
Here is how the test transformation I wrote looks like :
Generate XML String writes a single row containing an XML one-liner string in the 'xml' field.
Format XML contains the following code under its 'Processor' tab :
The implementation of toPrettyString(String xml) is up to you. Here I used the code found in this SO answer. You also have to define the output fields (by giving their names and types) under the 'Fields' tab of the step.
The above code was tested using Spoon/PDI Client on Pentaho 8.3.0.10