Class XmlWriter

  • All Implemented Interfaces:
    java.io.Closeable, java.io.Flushable, java.lang.Appendable, java.lang.AutoCloseable

    public class XmlWriter
    extends java.io.Writer
    Builder style API for emitting XML.
     StringWriter writer = new StringWriter();
     XmlWriter xml = new XmlWriter(writer);
     xml.element("meow")
            .attribute("moo", "cow")
            .element("child")
                    .attribute("moo", "cow")
                    .element("child")
                            .attribute("moo", "cow")
                            .text("XML is like violence. If it doesn't solve your problem, you're not using enough of it.")
                    .pop()
            .pop()
     .pop();
     System.out.println(writer);
     
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int indent  
      • Fields inherited from class java.io.Writer

        lock
    • Constructor Summary

      Constructors 
      Constructor Description
      XmlWriter​(java.io.Writer writer)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      XmlWriter attribute​(java.lang.String name, java.lang.Object value)  
      void close()
      Calls pop() for each remaining open element, if any, and closes the stream.
      XmlWriter element​(java.lang.String name)  
      XmlWriter element​(java.lang.String name, java.lang.Object text)  
      void flush()  
      XmlWriter pop()  
      XmlWriter text​(java.lang.Object text)  
      void write​(char[] cbuf, int off, int len)  
      • Methods inherited from class java.io.Writer

        append, append, append, write, write, write, write
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • indent

        public int indent
    • Constructor Detail

      • XmlWriter

        public XmlWriter​(java.io.Writer writer)
    • Method Detail

      • element

        public XmlWriter element​(java.lang.String name)
                          throws java.io.IOException
        Throws:
        java.io.IOException
      • element

        public XmlWriter element​(java.lang.String name,
                                 java.lang.Object text)
                          throws java.io.IOException
        Throws:
        java.io.IOException
      • attribute

        public XmlWriter attribute​(java.lang.String name,
                                   java.lang.Object value)
                            throws java.io.IOException
        Throws:
        java.io.IOException
      • text

        public XmlWriter text​(java.lang.Object text)
                       throws java.io.IOException
        Throws:
        java.io.IOException
      • pop

        public XmlWriter pop()
                      throws java.io.IOException
        Throws:
        java.io.IOException
      • close

        public void close()
                   throws java.io.IOException
        Calls pop() for each remaining open element, if any, and closes the stream.
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Specified by:
        close in class java.io.Writer
        Throws:
        java.io.IOException
      • write

        public void write​(char[] cbuf,
                          int off,
                          int len)
                   throws java.io.IOException
        Specified by:
        write in class java.io.Writer
        Throws:
        java.io.IOException
      • flush

        public void flush()
                   throws java.io.IOException
        Specified by:
        flush in interface java.io.Flushable
        Specified by:
        flush in class java.io.Writer
        Throws:
        java.io.IOException