Package de.odysseus.staxon.xml

Examples of de.odysseus.staxon.xml.SimpleXMLStreamWriter.writeNamespace()


    XMLStreamWriter writer = new SimpleXMLStreamWriter(result, false);
    writer.setDefaultNamespace("http://foo");
    writer.writeStartDocument();
    writer.writeStartElement("alice");
    writer.writeEmptyElement("bar", "bob", "http://bar");
    writer.writeNamespace("bar", "http://bar");
    writer.writeAttribute("jane", "dolly");
    writer.writeCharacters("hello");
    writer.writeEndElement();
    writer.writeEndDocument();
    writer.close();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.