Package de.odysseus.staxon.xml

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


  @Test
  public void testOther() throws XMLStreamException {
    StringWriter result = new StringWriter();
    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");
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.