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 using JAXB with options

    marshaller.setProperty(JAXB_FRAGMENT, true);     
    marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);

The marshalling is done in a .xml file but when I open the files there are blank lines after every insertion.

Does anyone knows what the solution might be ?

Regards

share|improve this question
What do you mean "every insertion"? – skaffman Feb 16 '12 at 10:44
For every object I call the marshaller.marshal(object, outputstream); Every insert into the .xml file is a single xml element – ajax Feb 16 '12 at 11:21
How are you creating the file you are marshalling to? – Blaise Doughan Feb 16 '12 at 12:15
simply by the File class in java and then using this file to write the data. – ajax Feb 16 '12 at 14:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.