JavaScript is disabled on your browser.
Skip navigation links

AWS SDK for Java 1.x API Reference - 1.12.795

We announced the upcoming end-of-support for AWS SDK for Java (v1). We recommend that you migrate to AWS SDK for Java v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
com.amazonaws.services.s3.internal

Class XmlWriter



  • public class XmlWriter
    extends Object 
    Basic XML Writer helper library. It does not do full XML Well-Formedness checks, but provides basic element and attribute value escaping, and tracks open tags to simplify use.

    Sampe usage:

     
     XmlWriter w = new XmlWriter();
     w.start(DOC_TAG, "xmlns", DOC_NAMESPACE);
     if (foo != null)
     w.start(FOO_TAG).value(foo).end();
     w.end();
     
     
Skip navigation links

AltStyle によって変換されたページ (->オリジナル) /