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 testing a standard xml parser with code

the xml file is

<? xml version='1.0' encoding='UTF-8'?>
<A></A>

and Java...

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        DocumentBuilder db=null;
        try {
            db = dbf.newDocumentBuilder();
        } catch (ParserConfigurationException e) {

            e.printStackTrace();
        }
        Document doc=null;
        try {
            doc = (Document) db.parse(filePath);

        } catch (SAXException e) {

            e.printStackTrace();
        } catch (IOException e) {

            e.printStackTrace();
        }

        Element a= (Element) doc.getElementsByTagName("A").item(0);
        Element b=(Element) doc.createElement("B");
        b.setAttribute("id", "12345");
        a.appendChild(b);



                Transformer transformer=null;
        try {
            transformer = TransformerFactory.newInstance().newTransformer();
        } catch (TransformerConfigurationException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        } catch (TransformerFactoryConfigurationError e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }
        transformer.setOutputProperty(OutputKeys.INDENT, "yes");

        //initialize StreamResult with File object to save to file
        StreamResult result = new StreamResult(new StringWriter());
        DOMSource source = new DOMSource(doc);
        try {
            transformer.transform(source, result);
        } catch (TransformerException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }

        String xml= result.getWriter().toString();

... for some reason the xml var value is always

[#document: null]

though I want to get xml itself :( So I just wondering why it is always null? And How to get inner modified xml to save it lets say to a file?

share|improve this question

1 Answer

up vote 0 down vote accepted

Works on my machine - the output you say [#docuument: null] is normal for a toString on a Document.

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();

DocumentBuilder db = dbf.newDocumentBuilder();
ByteArrayInputStream bis = new ByteArrayInputStream(
        "<A></A>".getBytes());
Document doc = db.parse(bis);

Element a = (Element) doc.getElementsByTagName("A").item(0);
Element b = (Element) doc.createElement("B");
b.setAttribute("id", "12345");
a.appendChild(b);

Transformer transformer = TransformerFactory.newInstance()
        .newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");

// initialize StreamResult with File object to save to file
StreamResult result = new StreamResult(new StringWriter());
DOMSource source = new DOMSource(doc);
transformer.transform(source, result);

String xml = result.getWriter().toString();
System.out.println(xml);
share|improve this answer
It is fine :) but how can I get a real xml string to save it in *.xml file? – user592704 Nov 5 '11 at 10:00
I am just wondering what you mean saying it is worked for your machine? Have you tested? Does the code result.getWriter().toString(); returns "<? xml version='1.0' encoding='UTF-8'?> <A><B id="12345"></B></A> " ? – user592704 Nov 6 '11 at 1:19
yes it returned that – Tom Nov 6 '11 at 4:36
OK. Thank you :) – user592704 Nov 6 '11 at 7:04

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.