-
Notifications
You must be signed in to change notification settings - Fork 118
JDOM2 Feature End Of Line Termination
XMLOutputter has used a Format instance to dictate the format of the output. This Format instance has been able to specify how XMLOutputter should handle the end-of-line termination sequence. When using 'raw' output, there has never been any sequence, but when using a normalized or pretty format there has, by default, been a carriage-return/line-feed sequence ("\r\n", CRLF or CRNL) which is the standard sequence for 'DOS' and later systems (think Microsoft). This sequence is well-respected by almost all platforms just because it's use is so pervasive. On the other hand, many systems use the plain line-feed sequence ("\n", NL) which is the standard UNIX sequence (and Apple Mac since OSX). The new-line sequence is also the 'normalized' format used for XML. It is the format that all XML parsers are required to report the XML in, regardless of the line-terminating seqence in the original input files. Many (most) XML handling libraries (apart from JDOM) produce newline-only XML.
During the building of the JUnit tests it became necessary to produce simple newline output in order to compare the JDOM output with other system outputs. This ignited a debate about whether JDOM should convert to using a plain newline termination sequence by default.
There is some resistance to the change, and, given that:
- it is 'easy' to configure JDOM to output using any specified sequence
- JDOM2 would be compatible with JDOM 1.x
- using the CRLF sequence makes it easy to edit files in basic windows tools like 'notepad'
it is sensible to keep the existing default end-of-line sequence.
At the same time it makes sense to make it easier to change the default end-of-line sequence, instead of having to do it for every output Format instance.
With all the above being said, it is time to introduce the new JDOM2 End-Of-Line features:
- it is now much easier to specify the common mechanisms for the end-of-line sequence.
- it is now possible to change the 'default' end-of-line sequence that a new Format instance will use.
The first feature is implemented with the org.jdom2.output.LineSeparator
enumeration which itemizes a number of common sequences:
- DOS and CRLF are aliases.
- UNIX and NL are aliases
- NONE for no sequence at all.
- SYSTEM for the sequence that is 'normal' for the current platform (CRLF on Windows, NL on UNIX, etc.).
- DEFAULT for the JDOM default (normally CRLF but may be overrided using a System property).
The Format class now supports setting the line termination sequence with the above LineSeparator enum.
The second feature is implemented with the System property org.jdom2.output.LineSeparator
java -D org.jdom2.output.LineSeparator=SYSTEM ...
See the JavaDoc for LineSeparator
to get more information.
[JDOM Home](http://www.jdom.org)
Stable Release
- [Download](http://www.jdom.org/downloads/index.html)
- [JavaDoc](http://www.jdom.org/docs/apidocs/index.html)
JDOM 2.x
- Overview
- Getting Started
- JDOM on Android
- [JavaDoc](http://hunterhacker.github.com/jdom/jdom2/apidocs/index.html)
- [Coverage](http://hunterhacker.github.com/jdom/jdom2/coverage/index.html)
- [UnitTests](http://hunterhacker.github.com/jdom/jdom2/junit.report/index.html)
- Features
- JDOM 1.x to JDOM 2.x
- Dependencies
Developing JDOM