XML.java
上传用户:shen332233
上传日期:2021-09-03
资源大小:7478k
文件大小:12k
源码类别:

Ajax

开发平台:

Java

  1. package org.json;
  2. /*
  3. Copyright (c) 2002 JSON.org
  4. Permission is hereby granted, free of charge, to any person obtaining a copy 
  5. of this software and associated documentation files (the "Software"), to deal 
  6. in the Software without restriction, including without limitation the rights 
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
  8. copies of the Software, and to permit persons to whom the Software is 
  9. furnished to do so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in all 
  11. copies or substantial portions of the Software.
  12. The Software shall be used for Good, not Evil.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
  16. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
  17. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
  18. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
  19. SOFTWARE.
  20. */
  21. import java.util.Iterator;
  22. import java.text.ParseException;
  23. /**
  24.  * This provides static methods to convert an XML text into a JSONObject,
  25.  * and to covert a JSONObject into an XML text.
  26.  * @author JSON.org
  27.  * @version 0.1
  28.  */
  29. public class XML {
  30.     private XML() {}
  31.     /** The Character '&'. */
  32.     public static final Character AMP   = new Character('&');
  33.     /** The Character '''. */
  34.     public static final Character APOS  = new Character(''');
  35.     /** The Character '!'. */
  36.     public static final Character BANG  = new Character('!');
  37.     /** The Character '='. */
  38.     public static final Character EQ    = new Character('=');
  39.     /** The Character '>'. */
  40.     public static final Character GT    = new Character('>');
  41.     /** The Character '<'. */
  42.     public static final Character LT    = new Character('<');
  43.     /** The Character '?'. */
  44.     public static final Character QUEST = new Character('?');
  45.     /** The Character '"'. */
  46.     public static final Character QUOT  = new Character('"');
  47.     /** The Character '/'. */
  48.     public static final Character SLASH = new Character('/');
  49.     /**
  50.      * Replace special characters with XML escapes: 
  51.      * <pre>
  52.      * &amp; is replaced by &amp;amp; 
  53.      * &lt; is replaced by &amp;lt; 
  54.      * &gt; is replaced by &amp;gt;
  55.      * &quot; is replaced by &amp;quot; 
  56.      * </pre>
  57.      */
  58.     public static String escape(String string) {
  59.         return string
  60.             .replaceAll("&", "&amp;")
  61.             .replaceAll("<", "&lt;")
  62.             .replaceAll(">", "&gt;")
  63.             .replaceAll(""", "&quot;");
  64.     }
  65.     /**
  66.      * Scan the content following the named tag, attaching it to the context.
  67.      * @param x       The XMLTokener containing the source string.
  68.      * @param context The JSONObject that will include the new material.
  69.      * @param name    The tag name.
  70.      * @return true if the close tag is processed.
  71.      * @throws ParseException
  72.      */
  73.     private static boolean parse(XMLTokener x, JSONObject context,
  74.                                  String name) throws ParseException {
  75.         char       c;
  76.         int        i;
  77.         String     n;
  78.         JSONObject o;
  79.         String     s;
  80.         Object     t;
  81. // Test for and skip past these forms:
  82. //      <!-- ... -->
  83. //      <!   ...   >
  84. //      <![  ... ]]>
  85. //      <?   ...  ?>
  86. // Report errors for these forms:
  87. //      <>
  88. //      <=
  89. //      <<
  90.         t = x.nextToken();
  91. // <!
  92.         if (t == BANG) {
  93.             c = x.next();
  94.             if (c == '-') {
  95.                 if (x.next() == '-') {
  96.                     x.skipPast("-->");
  97.                     return false;
  98.                 }
  99.                 x.back();
  100.             } else if (c == '[') {
  101.                 x.skipPast("]]>");
  102.                 return false;
  103.             }
  104.             i = 1;
  105.             do {
  106.                 t = x.nextMeta();
  107.                 if (t == null) {
  108.                     throw x.syntaxError("Missing '>' after '<!'.");
  109.                 } else if (t == LT) {
  110.                     i += 1;
  111.                 } else if (t == GT) {
  112.                     i -= 1;
  113.                 }
  114.             } while (i > 0);
  115.             return false;
  116.         } else if (t == QUEST) {
  117. // <?
  118.             x.skipPast("?>");
  119.             return false;
  120.         } else if (t == SLASH) {
  121. // Close tag </
  122.             if (name == null || !x.nextToken().equals(name)) {
  123.                 throw x.syntaxError("Mismatched close tag");
  124.             }
  125.             if (x.nextToken() != GT) {
  126.                 throw x.syntaxError("Misshaped close tag");
  127.             }
  128.             return true;
  129.         } else if (t instanceof Character) {
  130.             throw x.syntaxError("Misshaped tag");
  131. // Open tag <
  132.         } else {
  133.             n = (String)t;
  134.             t = null;
  135.             o = new JSONObject();
  136.             while (true) {
  137.                 if (t == null) {
  138.                     t = x.nextToken();
  139.                 }
  140. // attribute = value
  141.                 if (t instanceof String) {
  142.                     s = (String)t;
  143.                     t = x.nextToken();
  144.                     if (t == EQ) {
  145.                         t = x.nextToken();
  146.                         if (!(t instanceof String)) {
  147.                             throw x.syntaxError("Missing value");
  148.                         }
  149.                         o.accumulate(s, t);
  150.                         t = null;
  151.                     } else {
  152.                         o.accumulate(s, Boolean.TRUE);
  153.                     }
  154. // Empty tag <.../>
  155.                 } else if (t == SLASH) {
  156.                     if (x.nextToken() != GT) {
  157.                         throw x.syntaxError("Misshaped tag");
  158.                     }
  159.                     if (o.length() == 0) {
  160.                         context.accumulate(n, Boolean.TRUE);
  161.                     } else {
  162.                         context.accumulate(n, o);
  163.                     }
  164.                     return false;
  165. // Content, between <...> and </...>
  166.                 } else if (t == GT) {
  167.                     while (true) {
  168.                         t = x.nextContent();
  169.                         if (t == null) {
  170.                             if (name != null) {
  171.                                 throw x.syntaxError("Unclosed tag " + name);
  172.                             }
  173.                             return false;
  174.                         } else if (t instanceof String) {
  175.                             s = (String)t;
  176.                             if (s.length() > 0) {
  177.                                 o.accumulate("content", s);
  178.                             }
  179. // Nested element
  180.                         } else if (t == LT) {
  181.                             if (parse(x, o, n)) {
  182.                                 if (o.length() == 0) {
  183.                                     context.accumulate(n, Boolean.TRUE);
  184.                                 } else if (o.length() == 1 &&
  185.                                            o.opt("content") != null) {
  186.                                     context.accumulate(n, o.opt("content"));
  187.                                 } else {
  188.                                     context.accumulate(n, o);
  189.                                 }
  190.                                 return false;
  191.                             }
  192.                         }
  193.                     }
  194.                 } else {
  195.                     throw x.syntaxError("Misshaped tag");
  196.                 }
  197.             }
  198.         }
  199.     }
  200.     /**
  201.      * Convert a well-formed (but not necessarily valid) XML string into a
  202.      * JSONObject. Some information may be lost in this transformation
  203.      * because JSON is a data format and XML is a document format. XML uses
  204.      * elements, attributes, and content text, while JSON uses unordered
  205.      * collections of name/value pairs and arrays of values. JSON does not
  206.      * does not like to distinguish between elements and attributes.
  207.      * Sequences of similar elements are represented as JSONArrays. Content
  208.      * text may be placed in a "content" member. Comments, prologs, DTDs, and
  209.      * <code>&lt;[ [ ]]></code> are ignored.
  210.      * @param string The source string.
  211.      * @return A JSONObject containing the structured data from the XML string.
  212.      * @throws ParseException
  213.      */
  214.     public static JSONObject toJSONObject(String string) throws ParseException {
  215.         JSONObject o = new JSONObject();
  216.         XMLTokener x = new XMLTokener(string);
  217.         while (x.more()) {
  218.             x.skipPast("<");
  219.             parse(x, o, null);
  220.         }
  221.         return o;
  222.     }
  223.     /**
  224.      * Convert a JSONObject into a well-formed XML string.
  225.      * @param o A JSONObject.
  226.      * @return A string.
  227.      */
  228.     public static String toString(Object o) {
  229.         return toString(o, null);
  230.     }
  231.     /**
  232.      * Convert a JSONObject into a well-formed XML string.
  233.      * @param o A JSONObject.
  234.      * @param tagName The optional name of the enclosing tag.
  235.      * @return A string.
  236.      */
  237.     public static String toString(Object o, String tagName) {
  238.         StringBuffer a = null; // attributes, inside the <...>
  239.         StringBuffer b = new StringBuffer(); // body, between <...> and </...>
  240.         int          i;
  241.         JSONArray    ja;
  242.         JSONObject   jo;
  243.         String       k;
  244.         Iterator     keys;
  245.         int          len;
  246.         String       s;
  247.         Object       v;
  248.         if (o instanceof JSONObject) {
  249. // Emit <tagName
  250.             if (tagName != null) {
  251.                 a = new StringBuffer();
  252.                 a.append('<');
  253.                 a.append(tagName);
  254.             }
  255. // Loop thru the keys. Some keys will produce attribute material, others
  256. // body material.
  257.             jo = (JSONObject)o;
  258.             keys = jo.keys();
  259.             while (keys.hasNext()) {
  260.                 k = keys.next().toString();
  261.                 v = jo.get(k);
  262.                 if (v instanceof String) {
  263.                     s = (String)v;
  264.                 } else {
  265.                     s = null;
  266.                 }
  267. // Emit a new tag <k... in body
  268.                 if (tagName == null || v instanceof JSONObject ||
  269.                         (s != null && k != "content" && (s.length() > 60 ||
  270.                         (s.indexOf('"') >= 0 && s.indexOf(''') >= 0)))) {
  271.                     b.append(toString(v, k));
  272. // Emit content in body
  273.                 } else if (k.equals("content")) {
  274.                     b.append(escape(v.toString()));
  275. // Emit an array of similar keys in body
  276.                 } else if (v instanceof JSONArray) {
  277.                     ja = (JSONArray)v;
  278.                     len = ja.length();
  279.                     for (i = 0; i < len; i += 1) {
  280.                         b.append(toString(ja.get(i), k));
  281.                     }
  282. // Emit an attribute
  283.                 } else {
  284.                     a.append(' ');
  285.                     a.append(k);
  286.                     a.append('=');
  287.                     a.append(toString(v));
  288.                 }
  289.             }
  290.             if (tagName != null) {
  291. // Close an empty element
  292.                 if (b.length() == 0) {
  293.                     a.append("/>");
  294.                 } else {
  295. // Close the start tag and emit the body and the close tag
  296.                     a.append('>');
  297.                     a.append(b);
  298.                     a.append("</");
  299.                     a.append(tagName);
  300.                     a.append('>');
  301.                 }
  302.                 return a.toString();
  303.             }
  304.             return b.toString();
  305. // XML does not have good support for arrays. If an array appears in a place
  306. // where XML is lacking, synthesize an <array> element.
  307.         } else if (o instanceof JSONArray) {
  308.             ja = (JSONArray)o;
  309.             len = ja.length();
  310.             for (i = 0; i < len; ++i) {
  311.                 b.append(toString(
  312.                     ja.opt(i), (tagName == null) ? "array" : tagName));
  313.             }
  314.             return b.toString();
  315.         } else {
  316.             s = (o == null) ? "null" : escape(o.toString());
  317.             return (tagName == null) ? 
  318.                 """ + s + """ : 
  319.                 "<" + tagName + ">" + s + "</" + tagName + ">";
  320.         }
  321.     }
  322. }