XML.java.svn-base
上传用户:cdpainuo
上传日期:2022-07-12
资源大小:5257k
文件大小:14k
源码类别:

Jsp/Servlet

开发平台:

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. /**
  23.  * This provides static methods to convert an XML text into a JSONObject,
  24.  * and to covert a JSONObject into an XML text.
  25.  * @author JSON.org
  26.  * @version 2008-10-14
  27.  */
  28. public class XML {
  29.     /** The Character '&'. */
  30.     public static final Character AMP   = new Character('&');
  31.     /** The Character '''. */
  32.     public static final Character APOS  = new Character(''');
  33.     /** The Character '!'. */
  34.     public static final Character BANG  = new Character('!');
  35.     /** The Character '='. */
  36.     public static final Character EQ    = new Character('=');
  37.     /** The Character '>'. */
  38.     public static final Character GT    = new Character('>');
  39.     /** The Character '<'. */
  40.     public static final Character LT    = new Character('<');
  41.     /** The Character '?'. */
  42.     public static final Character QUEST = new Character('?');
  43.     /** The Character '"'. */
  44.     public static final Character QUOT  = new Character('"');
  45.     /** The Character '/'. */
  46.     public static final Character SLASH = new Character('/');
  47.     /**
  48.      * Replace special characters with XML escapes:
  49.      * <pre>
  50.      * &amp; <small>(ampersand)</small> is replaced by &amp;amp;
  51.      * &lt; <small>(less than)</small> is replaced by &amp;lt;
  52.      * &gt; <small>(greater than)</small> is replaced by &amp;gt;
  53.      * &quot; <small>(double quote)</small> is replaced by &amp;quot;
  54.      * </pre>
  55.      * @param string The string to be escaped.
  56.      * @return The escaped string.
  57.      */
  58.     public static String escape(String string) {
  59.         StringBuffer sb = new StringBuffer();
  60.         for (int i = 0, len = string.length(); i < len; i++) {
  61.             char c = string.charAt(i);
  62.             switch (c) {
  63.             case '&':
  64.                 sb.append("&amp;");
  65.                 break;
  66.             case '<':
  67.                 sb.append("&lt;");
  68.                 break;
  69.             case '>':
  70.                 sb.append("&gt;");
  71.                 break;
  72.             case '"':
  73.                 sb.append("&quot;");
  74.                 break;
  75.             default:
  76.                 sb.append(c);
  77.             }
  78.         }
  79.         return sb.toString();
  80.     }
  81.     
  82.     /**
  83.      * Throw an exception if the string contains whitespace. 
  84.      * Whitespace is not allowed in tagNames and attributes.
  85.      * @param string
  86.      * @throws JSONException
  87.      */
  88.     public static void noSpace(String string) throws JSONException {
  89.      int i, length = string.length();
  90.      if (length == 0) {
  91.      throw new JSONException("Empty string.");
  92.      }
  93.      for (i = 0; i < length; i += 1) {
  94.     if (Character.isWhitespace(string.charAt(i))) {
  95.      throw new JSONException("'" + string + 
  96.      "' contains a space character.");
  97.     }
  98. }
  99.     }
  100.     /**
  101.      * Scan the content following the named tag, attaching it to the context.
  102.      * @param x       The XMLTokener containing the source string.
  103.      * @param context The JSONObject that will include the new material.
  104.      * @param name    The tag name.
  105.      * @return true if the close tag is processed.
  106.      * @throws JSONException
  107.      */
  108.     private static boolean parse(XMLTokener x, JSONObject context,
  109.                                  String name) throws JSONException {
  110.         char       c;
  111.         int        i;
  112.         String     n;
  113.         JSONObject o = null;
  114.         String     s;
  115.         Object     t;
  116. // Test for and skip past these forms:
  117. //      <!-- ... -->
  118. //      <!   ...   >
  119. //      <![  ... ]]>
  120. //      <?   ...  ?>
  121. // Report errors for these forms:
  122. //      <>
  123. //      <=
  124. //      <<
  125.         t = x.nextToken();
  126. // <!
  127.         if (t == BANG) {
  128.             c = x.next();
  129.             if (c == '-') {
  130.                 if (x.next() == '-') {
  131.                     x.skipPast("-->");
  132.                     return false;
  133.                 }
  134.                 x.back();
  135.             } else if (c == '[') {
  136.                 t = x.nextToken();
  137.                 if (t.equals("CDATA")) {
  138.                     if (x.next() == '[') {
  139.                         s = x.nextCDATA();
  140.                         if (s.length() > 0) {
  141.                             context.accumulate("content", s);
  142.                         }
  143.                         return false;
  144.                     }
  145.                 }
  146.                 throw x.syntaxError("Expected 'CDATA['");
  147.             }
  148.             i = 1;
  149.             do {
  150.                 t = x.nextMeta();
  151.                 if (t == null) {
  152.                     throw x.syntaxError("Missing '>' after '<!'.");
  153.                 } else if (t == LT) {
  154.                     i += 1;
  155.                 } else if (t == GT) {
  156.                     i -= 1;
  157.                 }
  158.             } while (i > 0);
  159.             return false;
  160.         } else if (t == QUEST) {
  161. // <?
  162.             x.skipPast("?>");
  163.             return false;
  164.         } else if (t == SLASH) {
  165. // Close tag </
  166.          t = x.nextToken();
  167.             if (name == null) {
  168.                 throw x.syntaxError("Mismatched close tag" + t);
  169.             }            
  170.             if (!t.equals(name)) {
  171.                 throw x.syntaxError("Mismatched " + name + " and " + t);
  172.             }
  173.             if (x.nextToken() != GT) {
  174.                 throw x.syntaxError("Misshaped close tag");
  175.             }
  176.             return true;
  177.         } else if (t instanceof Character) {
  178.             throw x.syntaxError("Misshaped tag");
  179. // Open tag <
  180.         } else {
  181.             n = (String)t;
  182.             t = null;
  183.             o = new JSONObject();
  184.             for (;;) {
  185.                 if (t == null) {
  186.                     t = x.nextToken();
  187.                 }
  188. // attribute = value
  189.                 if (t instanceof String) {
  190.                     s = (String)t;
  191.                     t = x.nextToken();
  192.                     if (t == EQ) {
  193.                         t = x.nextToken();
  194.                         if (!(t instanceof String)) {
  195.                             throw x.syntaxError("Missing value");
  196.                         }
  197.                         o.accumulate(s, JSONObject.stringToValue((String)t));
  198.                         t = null;
  199.                     } else {
  200.                         o.accumulate(s, "");
  201.                     }
  202. // Empty tag <.../>
  203.                 } else if (t == SLASH) {
  204.                     if (x.nextToken() != GT) {
  205.                         throw x.syntaxError("Misshaped tag");
  206.                     }
  207.                     context.accumulate(n, o);
  208.                     return false;
  209. // Content, between <...> and </...>
  210.                 } else if (t == GT) {
  211.                     for (;;) {
  212.                         t = x.nextContent();
  213.                         if (t == null) {
  214.                             if (n != null) {
  215.                                 throw x.syntaxError("Unclosed tag " + n);
  216.                             }
  217.                             return false;
  218.                         } else if (t instanceof String) {
  219.                             s = (String)t;
  220.                             if (s.length() > 0) {
  221.                                 o.accumulate("content", JSONObject.stringToValue(s));
  222.                             }
  223. // Nested element
  224.                         } else if (t == LT) {
  225.                             if (parse(x, o, n)) {
  226.                                 if (o.length() == 0) {
  227.                                     context.accumulate(n, "");
  228.                                 } else if (o.length() == 1 &&
  229.                                        o.opt("content") != null) {
  230.                                     context.accumulate(n, o.opt("content"));
  231.                                 } else {
  232.                                     context.accumulate(n, o);
  233.                                 }
  234.                                 return false;
  235.                             }
  236.                         }
  237.                     }
  238.                 } else {
  239.                     throw x.syntaxError("Misshaped tag");
  240.                 }
  241.             }
  242.         }
  243.     }
  244.     /**
  245.      * Convert a well-formed (but not necessarily valid) XML string into a
  246.      * JSONObject. Some information may be lost in this transformation
  247.      * because JSON is a data format and XML is a document format. XML uses
  248.      * elements, attributes, and content text, while JSON uses unordered
  249.      * collections of name/value pairs and arrays of values. JSON does not
  250.      * does not like to distinguish between elements and attributes.
  251.      * Sequences of similar elements are represented as JSONArrays. Content
  252.      * text may be placed in a "content" member. Comments, prologs, DTDs, and
  253.      * <code>&lt;[ [ ]]></code> are ignored.
  254.      * @param string The source string.
  255.      * @return A JSONObject containing the structured data from the XML string.
  256.      * @throws JSONException
  257.      */
  258.     public static JSONObject toJSONObject(String string) throws JSONException {
  259.         JSONObject o = new JSONObject();
  260.         XMLTokener x = new XMLTokener(string);
  261.         while (x.more() && x.skipPast("<")) {
  262.             parse(x, o, null);
  263.         }
  264.         return o;
  265.     }
  266.     /**
  267.      * Convert a JSONObject into a well-formed, element-normal XML string.
  268.      * @param o A JSONObject.
  269.      * @return  A string.
  270.      * @throws  JSONException
  271.      */
  272.     public static String toString(Object o) throws JSONException {
  273.         return toString(o, null);
  274.     }
  275.     /**
  276.      * Convert a JSONObject into a well-formed, element-normal XML string.
  277.      * @param o A JSONObject.
  278.      * @param tagName The optional name of the enclosing tag.
  279.      * @return A string.
  280.      * @throws JSONException
  281.      */
  282.     public static String toString(Object o, String tagName)
  283.             throws JSONException {
  284.         StringBuffer b = new StringBuffer();
  285.         int          i;
  286.         JSONArray    ja;
  287.         JSONObject   jo;
  288.         String       k;
  289.         Iterator     keys;
  290.         int          len;
  291.         String       s;
  292.         Object       v;
  293.         if (o instanceof JSONObject) {
  294. // Emit <tagName>
  295.             if (tagName != null) {
  296.                 b.append('<');
  297.                 b.append(tagName);
  298.                 b.append('>');
  299.             }
  300. // Loop thru the keys.
  301.             jo = (JSONObject)o;
  302.             keys = jo.keys();
  303.             while (keys.hasNext()) {
  304.                 k = keys.next().toString();
  305.                 v = jo.opt(k);
  306.                 if (v == null) {
  307.                  v = "";
  308.                 }
  309.                 if (v instanceof String) {
  310.                     s = (String)v;
  311.                 } else {
  312.                     s = null;
  313.                 }
  314. // Emit content in body
  315.                 if (k.equals("content")) {
  316.                     if (v instanceof JSONArray) {
  317.                         ja = (JSONArray)v;
  318.                         len = ja.length();
  319.                         for (i = 0; i < len; i += 1) {
  320.                             if (i > 0) {
  321.                                 b.append('n');
  322.                             }
  323.                             b.append(escape(ja.get(i).toString()));
  324.                         }
  325.                     } else {
  326.                         b.append(escape(v.toString()));
  327.                     }
  328. // Emit an array of similar keys
  329.                 } else if (v instanceof JSONArray) {
  330.                     ja = (JSONArray)v;
  331.                     len = ja.length();
  332.                     for (i = 0; i < len; i += 1) {
  333.                      v = ja.get(i);
  334.                      if (v instanceof JSONArray) {
  335.                             b.append('<');
  336.                             b.append(k);
  337.                             b.append('>');
  338.                      b.append(toString(v));
  339.                             b.append("</");
  340.                             b.append(k);
  341.                             b.append('>');
  342.                      } else {
  343.                      b.append(toString(v, k));
  344.                      }
  345.                     }
  346.                 } else if (v.equals("")) {
  347.                     b.append('<');
  348.                     b.append(k);
  349.                     b.append("/>");
  350. // Emit a new tag <k>
  351.                 } else {
  352.                     b.append(toString(v, k));
  353.                 }
  354.             }
  355.             if (tagName != null) {
  356. // Emit the </tagname> close tag
  357.                 b.append("</");
  358.                 b.append(tagName);
  359.                 b.append('>');
  360.             }
  361.             return b.toString();
  362. // XML does not have good support for arrays. If an array appears in a place
  363. // where XML is lacking, synthesize an <array> element.
  364.         } else if (o instanceof JSONArray) {
  365.             ja = (JSONArray)o;
  366.             len = ja.length();
  367.             for (i = 0; i < len; ++i) {
  368.              v = ja.opt(i);
  369.                 b.append(toString(v, (tagName == null) ? "array" : tagName));
  370.             }
  371.             return b.toString();
  372.         } else {
  373.             s = (o == null) ? "null" : escape(o.toString());
  374.             return (tagName == null) ? """ + s + """ :
  375.                 (s.length() == 0) ? "<" + tagName + "/>" :
  376.                 "<" + tagName + ">" + s + "</" + tagName + ">";
  377.         }
  378.     }
  379. }