Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am serializing an org.w3c.dom.Document (stored in the variable _document) to a text file (represented by the variable _file) using the snippet below. It works fine.

The file produced by the snippet has Unix-style newlines ('\n', 0x0A). However, this is running on Windows and I would like to have it use the DOS newline standard instead ( '\r\n', 0x0D0A) because the file will often be opened and read by administrators using notepad.exe.

Can I somehow specify the newline type to be used in the serialization below?

(In the snippet _document is of type org.w3c.dom.Document and _file is of type java.io.File.)

DOMImplementation domImplementation = _document.getImplementation();
DOMImplementationLS domImplementationLS 
  = (DOMImplementationLS) domImplementation.getFeature("LS", "3.0");
LSSerializer serializer = domImplementationLS.createLSSerializer();
LSOutput lsOutput = domImplementationLS.createLSOutput();
OutputStream outputStream = new FileOutputStream(_file);
lsOutput.setByteStream(outputStream);
serializer.write(_document, lsOutput);
outputStream.close();
share|improve this question

1 Answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.