vote up 3 vote down star
1

Using the following simple code:

package test;

import java.io.*;
import javax.xml.transform.*;
import javax.xml.transform.stream.*;

public class TestOutputKeys {
	public static void main(String[] args) throws TransformerException {

		// Instantiate transformer input
		Source xmlInput = new StreamSource(new StringReader(
				"<!-- Document comment --><aaa><bbb/><ccc/></aaa>"));
		StreamResult xmlOutput = new StreamResult(new StringWriter());

		// Configure transformer
		Transformer transformer = TransformerFactory.newInstance()
				.newTransformer(); // An identity transformer
		transformer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM, "testing.dtd");
		transformer.setOutputProperty(OutputKeys.INDENT, "yes");
		transformer.transform(xmlInput, xmlOutput);

		System.out.println(xmlOutput.getWriter().toString());
	}

}

I get the output:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Document comment --><!DOCTYPE aaa SYSTEM "testing.dtd">

<aaa>
<bbb/>
<ccc/>
</aaa>

Question A: The doctype tag appears after the document comment. Is it possible to make it appear before the document comment?

Question B: How do I achieve indentation, using only the JavaSE 5.0 API? This question is essentially identical to How to pretty-print xml from java, however almost all answers in that question depend on external libraries. The only applicable answer (posted by a user named Lorenzo Boccaccia) which only uses java's api, is basically equal to the code posted above, but does not work for me (as shown in the output, i get no indentation).

I am guessing that you have to set the amount of spaces to use for indentation, as many of the answers with external libraries do, but I just cannot find where to specify that in the java api. Given the fact that the possibility to set an indentation property to "yes" exists in the java api, it must be possible to perform indentation somehow. I just can't figure out how.

flag

33% accept rate
Question A doesn't make sense. Do you mean "before" in the second part? – Aaron Digulla Aug 12 at 8:19
Yes. I edited the question to change typo. Thank you. – Alderath Aug 12 at 8:30

2 Answers

vote up 2 vote down

The missing part is the amount to indent. You can set the indentation and indent amount as follow:

transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
transformer.transform(xmlInput, xmlOutput);
link|flag
hmm just tested this with your sample and got an error – Rich Seller Aug 12 at 8:15
it works for me – dfa Aug 12 at 8:15
good to know, I think it failed because I had an old version of xalan, double checking – Rich Seller Aug 12 at 8:19
This solution indents the resulting XML document, compiling without errors or warnings. – Dave Jarvis Aug 12 at 8:21
Isn't this solution also kind of library dependent. jre5.0/jdk5.0 ships with Apache Xalan, am I correct? What if a user has changed the implementation of TransformerFactory to be used to some other implementation which also conforms to the javax.xml.transform api? This will fail then, won't it? That property seems to be Apache implementation dependent, imo. – Alderath Aug 12 at 8:24
show 5 more comments
vote up 1 vote down

You could probably prettify everything with an XSLT file. Google throws up a few results, but I can't comment on their correctness.

link|flag
I like this idea. I use XSLT a fair bit for this sort of thing (namespace maniuplation, whitespace control, etc). It's not efficient, but it's quite easy, and not parser-dependent. – skaffman Aug 12 at 10:45

Your Answer

Get an OpenID
or

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