문제

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?

도움이 되었습니까?

해결책 2

If you use LSSerializer rather than Transformer, you can use LSSerializer.setNewLine to control newlines.

다른 팁

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.

Unsure if the classes you're using use the system properties, but if they do, this should work

System.setProperty("line.separator", "\n");

Related question but for Windows line endings

If not, you'll have to do as Foo Bar User said in his comment, replace them manually.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top