I am currently outputting an XML document to a file in Java as follows:
final Document xmldoc = toXMLDocument(docTheory);
// write the content into xml file
TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
DOMSource source = new DOMSource(xmldoc);
StreamResult result = new StreamResult(file);
transformer.transform(source, result);
However, when run on Windows, this produces output with Windows-style line-endings. I would like to have Unix-style line endings produced regardless of OS. How I can do this?
The difference between operating systems is because it is used internally the method println .
Before saving the file, change the line separator:
System.setProperty("line.separator", "\n");
You could use a static block.
If you use LSSerializer rather than Transformer, you can use LSSerializer.setNewLine to control newlines.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With