0
votes
1answer
42 views

How to get properly indented XML on Android?

Based on several examples here on StackOverflow I have the following code for indenting XML. I have a source xml file in a String. Output however is not indented, but it also doesn't give any errors. ...
1
vote
1answer
451 views

XML split attribute value on multiple line

I have XML data which contains a long attribute value. The value does not contain white space characters. I want to format the XML for readability by splitting the XML text so that the line does not ...
0
votes
2answers
461 views

Java: IndentingXMLStreamWriter alternative?

I am using StAX to create a quite large xml document. Until now I was using the IndentingXMLStreamwriter class to get a well formatted document (see also this answer). A few days ago we setup a ...
0
votes
1answer
251 views

Java: Using IndentingXMLStreamwriter results in large file size

I am using the IndentingXMLStreamWriter-Class to get a well formatted XML-file. The code looks like this: XMLOutputFactory output = XMLOutputFactory.newInstance(); XMLStreamWriter streamWriter; ...
2
votes
1answer
304 views

Xml InnerXml indentation issue

I have a XmlDocument like this: <Root> <Settings> <PresentationSettings> </PresentationSettings> </Settings> </Root> When I set the InnerXml of ...
6
votes
4answers
580 views

How to suppress indentation for XML output in XQuery

Is there a way from within an XQuery to remove indentation of the XML output? Eg. say I had an XQuery of; <foo><bar/></foo> producing an XML result document of; <foo> ...
3
votes
2answers
1k views

Alternative to IndentingXMLStreamWriter.java

Is their an alternative to IndentingXMLStreamWriter.java i've always had some sort of issue at some point in which i am unable to compile though it goes away after a while. So I was wondering if their ...
0
votes
1answer
2k views

Java 1.6: javax.xml.transform.Transformer refuses to indent xml strings which contain newlines

I need to be able to pretty print xml strings using Java APIs and have found multiple solutions for this both on the web and on this particular website. However despite multiple attempts to get this ...
2
votes
4answers
2k views

java DOM xml file create - Have no tabs or whitespaces in output file

I already looked through the postings on stackoverflow but it seems that nothing helps. Here is what have: // write the content into xml file TransformerFactory ...
31
votes
6answers
25k views

Java: How to Indent XML Generated by Transformer

I'm using Java's built in XML transformer to take a DOM document and print out the resulting XML. The problem is that it isn't indenting the text at all despite having set the parameter "indent" ...