Package org.json
Class XML
- java.lang.Object
- 
- org.json.XML
 
- 
 public class XML extends java.lang.ObjectThis provides static methods to convert an XML text into a JSONObject, and to covert a JSONObject into an XML text.
- 
- 
Field SummaryFields Modifier and Type Field Description static java.lang.CharacterAMPThe Character '&'.static java.lang.CharacterAPOSThe Character '''.static java.lang.CharacterBANGThe Character '!'.static java.lang.CharacterEQThe Character '='.static java.lang.CharacterGTThe Character '>'.static java.lang.CharacterLTThe Character '<'.static java.lang.CharacterQUESTThe Character '?'.static java.lang.CharacterQUOTThe Character '"'.static java.lang.CharacterSLASHThe Character '/'.
 - 
Constructor SummaryConstructors Constructor Description XML()
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.Stringescape(java.lang.String string)Replace special characters with XML escapes:static voidnoSpace(java.lang.String string)Throw an exception if the string contains whitespace.static JSONObjecttoJSONObject(java.lang.String string)Convert a well-formed (but not necessarily valid) XML string into a JSONObject.static java.lang.StringtoString(java.lang.Object o)Convert a JSONObject into a well-formed, element-normal XML string.static java.lang.StringtoString(java.lang.Object o, java.lang.String tagName)Convert a JSONObject into a well-formed, element-normal XML string.
 
- 
- 
- 
Field Detail- 
AMPpublic static final java.lang.Character AMP The Character '&'.
 - 
APOSpublic static final java.lang.Character APOS The Character '''.
 - 
BANGpublic static final java.lang.Character BANG The Character '!'.
 - 
EQpublic static final java.lang.Character EQ The Character '='.
 - 
GTpublic static final java.lang.Character GT The Character '>'.
 - 
LTpublic static final java.lang.Character LT The Character '<'.
 - 
QUESTpublic static final java.lang.Character QUEST The Character '?'.
 - 
QUOTpublic static final java.lang.Character QUOT The Character '"'.
 - 
SLASHpublic static final java.lang.Character SLASH The Character '/'.
 
- 
 - 
Method Detail- 
escapepublic static java.lang.String escape(java.lang.String string) Replace special characters with XML escapes:& (ampersand) is replaced by & < (less than) is replaced by < > (greater than) is replaced by > " (double quote) is replaced by " - Parameters:
- string- The string to be escaped.
- Returns:
- The escaped string.
 
 - 
noSpacepublic static void noSpace(java.lang.String string) throws JSONExceptionThrow an exception if the string contains whitespace. Whitespace is not allowed in tagNames and attributes.- Throws:
- JSONException
 
 - 
toJSONObjectpublic static JSONObject toJSONObject(java.lang.String string) throws JSONException Convert a well-formed (but not necessarily valid) XML string into a JSONObject. Some information may be lost in this transformation because JSON is a data format and XML is a document format. XML uses elements, attributes, and content text, while JSON uses unordered collections of name/value pairs and arrays of values. JSON does not does not like to distinguish between elements and attributes. Sequences of similar elements are represented as JSONArrays. Content text may be placed in a "content" member. Comments, prologs, DTDs, and<[ [ ]]>are ignored.- Parameters:
- string- The source string.
- Returns:
- A JSONObject containing the structured data from the XML string.
- Throws:
- JSONException
 
 - 
toStringpublic static java.lang.String toString(java.lang.Object o) throws JSONExceptionConvert a JSONObject into a well-formed, element-normal XML string.- Throws:
- JSONException
 
 - 
toStringpublic static java.lang.String toString(java.lang.Object o, java.lang.String tagName) throws JSONExceptionConvert a JSONObject into a well-formed, element-normal XML string.- Parameters:
- o- A JSONObject.
- tagName- The optional name of the enclosing tag.
- Returns:
- A string.
- Throws:
- JSONException
 
 
- 
 
-