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

Jsp/Servlet

开发平台:

Java

  1. package org.json;
  2. /*
  3. Copyright (c) 2008 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 JSONArray or 
  24.  * JSONObject, and to covert a JSONArray or JSONObject into an XML text using 
  25.  * the JsonML transform.
  26.  * @author JSON.org
  27.  * @version 2008-11-20
  28.  */
  29. public class JSONML {
  30.     /**
  31.      * Parse XML values and store them in a JSONArray.
  32.      * @param x       The XMLTokener containing the source string.
  33.      * @param arrayForm true if array form, false if object form.
  34.      * @param ja      The JSONArray that is containing the current tag or null
  35.      *     if we are at the outermost level.
  36.      * @return A JSONArray if the value is the outermost tag, otherwise null.
  37.      * @throws JSONException
  38.      */
  39.     private static Object parse(XMLTokener x, boolean arrayForm, 
  40.      JSONArray ja) throws JSONException {
  41.         String     attribute;
  42.         char       c;
  43.         String    closeTag = null;
  44.         int        i;
  45.         JSONArray  newja = null;
  46.         JSONObject newjo = null;
  47.         Object     token;
  48.         String    tagName = null;
  49.         
  50. // Test for and skip past these forms:
  51. //      <!-- ... -->
  52. //      <![  ... ]]>
  53. //      <!   ...   >
  54. //      <?   ...  ?>
  55.         
  56.         while (true) {
  57.          token = x.nextContent();
  58.      if (token == XML.LT) {
  59.      token = x.nextToken();
  60.      if (token instanceof Character) {
  61.         if (token == XML.SLASH) {
  62. // Close tag </
  63.          token = x.nextToken();
  64.          if (!(token instanceof String)) {
  65.          throw new JSONException(
  66.          "Expected a closing name instead of '" + 
  67.          token + "'.");
  68.          }
  69.             if (x.nextToken() != XML.GT) {
  70.                 throw x.syntaxError("Misshaped close tag");
  71.             }
  72.             return token;
  73.         } else if (token == XML.BANG) {
  74.         
  75. // <!
  76.         
  77.             c = x.next();
  78.             if (c == '-') {
  79.                 if (x.next() == '-') {
  80.                     x.skipPast("-->");
  81.                 }
  82.                 x.back();
  83.             } else if (c == '[') {
  84.                 token = x.nextToken();
  85.                 if (token.equals("CDATA") && x.next() == '[') {
  86.                  if (ja != null) {
  87.                  ja.put(x.nextCDATA());
  88.                  }
  89.                 } else {
  90.                  throw x.syntaxError("Expected 'CDATA['");
  91.                 }
  92.             } else {
  93.             i = 1;
  94.             do {
  95.                 token = x.nextMeta();
  96.                 if (token == null) {
  97.                     throw x.syntaxError("Missing '>' after '<!'.");
  98.                 } else if (token == XML.LT) {
  99.                     i += 1;
  100.                 } else if (token == XML.GT) {
  101.                     i -= 1;
  102.                 }
  103.             } while (i > 0);
  104.             }
  105.         } else if (token == XML.QUEST) {
  106. // <?
  107.          x.skipPast("?>");
  108.         } else {
  109.             throw x.syntaxError("Misshaped tag");
  110.         }
  111. // Open tag <
  112.         } else {
  113.          if (!(token instanceof String)) {
  114.             throw x.syntaxError("Bad tagName '" + token + "'.");         
  115.          }
  116.          tagName = (String)token;
  117.             newja = new JSONArray();
  118.             newjo = new JSONObject();
  119.          if (arrayForm) {
  120.             newja.put(tagName);
  121.             if (ja != null) {
  122.              ja.put(newja);
  123.             }
  124.         } else {
  125.          newjo.put("tagName", tagName);
  126.          if (ja != null) {
  127.              ja.put(newjo);
  128.             }
  129.         }
  130.             token = null;
  131.             for (;;) {
  132.                 if (token == null) {
  133.                     token = x.nextToken();
  134.                 }
  135.                 if (token == null) {
  136.                  throw x.syntaxError("Misshaped tag");
  137.                 }
  138.                 if (!(token instanceof String)) {
  139.                  break;
  140.                 }
  141. //               attribute = value
  142.                     attribute = (String)token;
  143.          if (!arrayForm && (attribute == "tagName" || attribute == "childNode")) {
  144.                             throw x.syntaxError("Reserved attribute.");         
  145.          }
  146.                     token = x.nextToken();
  147.                     if (token == XML.EQ) {
  148.                         token = x.nextToken();
  149.                         if (!(token instanceof String)) {
  150.                             throw x.syntaxError("Missing value");
  151.                         }
  152.                         newjo.accumulate(attribute, JSONObject.stringToValue((String)token));
  153.                         token = null;
  154.                     } else {
  155.                      newjo.accumulate(attribute, "");
  156.                     }
  157.             }
  158.                     if (arrayForm && newjo.length() > 0) {
  159.                      newja.put(newjo);
  160.                     }
  161. // Empty tag <.../>
  162.                 if (token == XML.SLASH) {
  163.                     if (x.nextToken() != XML.GT) {
  164.                         throw x.syntaxError("Misshaped tag");
  165.                     }
  166.                     if (ja == null) {
  167.                      if (arrayForm) {
  168.                      return newja;
  169.                      } else {
  170.                      return newjo;
  171.                      }
  172.                     }
  173. // Content, between <...> and </...>
  174.                 } else {
  175.                  if (token != XML.GT) {
  176.                  throw x.syntaxError("Misshaped tag");
  177.                  }
  178.                  closeTag = (String)parse(x, arrayForm, newja);
  179.                  if (closeTag != null) {
  180.                  if (!closeTag.equals(tagName)) {
  181.                  throw x.syntaxError("Mismatched '" + tagName + 
  182.                  "' and '" + closeTag + "'");
  183.         }
  184.                  tagName = null;
  185.              if (!arrayForm && newja.length() > 0) {
  186.              newjo.put("childNodes", newja);
  187.              }
  188.                  if (ja == null) {
  189.                      if (arrayForm) {
  190.                      return newja;
  191.                      } else {
  192.                      return newjo;
  193.                      }
  194.                  }
  195.                  }
  196.                  }
  197.             }
  198.     } else {
  199.      if (ja != null) {
  200.      ja.put(token instanceof String ? 
  201.      JSONObject.stringToValue((String)token) : token);
  202.      }
  203.     }
  204.         }
  205.     }
  206.     /**
  207.      * Convert a well-formed (but not necessarily valid) XML string into a
  208.      * JSONArray using the JsonML transform. Each XML tag is represented as
  209.      * a JSONArray in which the first element is the tag name. If the tag has
  210.      * attributes, then the second element will be JSONObject containing the
  211.      * name/value pairs. If the tag contains children, then strings and
  212.      * JSONArrays will represent the child tags.
  213.      * Comments, prologs, DTDs, and <code>&lt;[ [ ]]></code> are ignored.
  214.      * @param string The source string.
  215.      * @return A JSONArray containing the structured data from the XML string.
  216.      * @throws JSONException
  217.      */
  218.     public static JSONArray toJSONArray(String string) throws JSONException {
  219.      return toJSONArray(new XMLTokener(string));
  220.     }
  221.     /**
  222.      * Convert a well-formed (but not necessarily valid) XML string into a
  223.      * JSONArray using the JsonML transform. Each XML tag is represented as
  224.      * a JSONArray in which the first element is the tag name. If the tag has
  225.      * attributes, then the second element will be JSONObject containing the
  226.      * name/value pairs. If the tag contains children, then strings and
  227.      * JSONArrays will represent the child content and tags.
  228.      * Comments, prologs, DTDs, and <code>&lt;[ [ ]]></code> are ignored.
  229.      * @param x An XMLTokener.
  230.      * @return A JSONArray containing the structured data from the XML string.
  231.      * @throws JSONException
  232.      */
  233.     public static JSONArray toJSONArray(XMLTokener x) throws JSONException {
  234.      return (JSONArray)parse(x, true, null);
  235.     }
  236.     
  237.     /**
  238.      * Convert a well-formed (but not necessarily valid) XML string into a
  239.      * JSONObject using the JsonML transform. Each XML tag is represented as
  240.      * a JSONObject with a "tagName" property. If the tag has attributes, then 
  241.      * the attributes will be in the JSONObject as properties. If the tag 
  242.      * contains children, the object will have a "childNodes" property which 
  243.      * will be an array of strings and JsonML JSONObjects.
  244.      * Comments, prologs, DTDs, and <code>&lt;[ [ ]]></code> are ignored.
  245.      * @param x An XMLTokener of the XML source text.
  246.      * @return A JSONObject containing the structured data from the XML string.
  247.      * @throws JSONException
  248.      */
  249.     public static JSONObject toJSONObject(XMLTokener x) throws JSONException {
  250.         return (JSONObject)parse(x, false, null);
  251.     }
  252.     /**
  253.      * Convert a well-formed (but not necessarily valid) XML string into a
  254.      * JSONObject using the JsonML transform. Each XML tag is represented as
  255.      * a JSONObject with a "tagName" property. If the tag has attributes, then 
  256.      * the attributes will be in the JSONObject as properties. If the tag 
  257.      * contains children, the object will have a "childNodes" property which 
  258.      * will be an array of strings and JsonML JSONObjects.
  259.      * Comments, prologs, DTDs, and <code>&lt;[ [ ]]></code> are ignored.
  260.      * @param string The XML source text.
  261.      * @return A JSONObject containing the structured data from the XML string.
  262.      * @throws JSONException
  263.      */
  264.     public static JSONObject toJSONObject(String string) throws JSONException {
  265.      return toJSONObject(new XMLTokener(string));
  266.     }
  267.     /**
  268.      * Reverse the JSONML transformation, making an XML text from a JSONArray.
  269.      * @param ja A JSONArray.
  270.      * @return An XML string.
  271.      * @throws JSONException
  272.      */
  273.     public static String toString(JSONArray ja) throws JSONException {
  274.      Object  e;
  275.      int  i;
  276.      JSONObject   jo;
  277.      String       k;
  278.     Iterator     keys;
  279.     int  length;
  280.      StringBuffer sb = new StringBuffer();
  281.     String       tagName;
  282.     String       v;
  283.     
  284. // Emit <tagName     
  285.     
  286.      tagName = ja.getString(0);
  287. XML.noSpace(tagName);
  288. tagName = XML.escape(tagName);
  289. sb.append('<');
  290. sb.append(tagName);
  291. e = ja.opt(1);
  292. if (e instanceof JSONObject) {
  293. i = 2;
  294. jo = (JSONObject)e;
  295. // Emit the attributes
  296.         keys = jo.keys();
  297.         while (keys.hasNext()) {
  298.             k = keys.next().toString();
  299.              XML.noSpace(k);
  300.             v = jo.optString(k);
  301.             if (v != null) {
  302.             sb.append(' ');
  303.             sb.append(XML.escape(k));
  304.             sb.append('=');
  305.             sb.append('"');
  306.             sb.append(XML.escape(v));
  307.             sb.append('"');
  308.             }
  309.         }  
  310. } else {
  311. i = 1;
  312. }
  313.      
  314. //Emit content in body
  315.     
  316. length = ja.length();
  317. if (i >= length) {
  318.         sb.append('/');
  319.         sb.append('>');
  320. } else {
  321.         sb.append('>');
  322. do {
  323.     e = ja.get(i);
  324.     i += 1;
  325.     if (e != null) {
  326.      if (e instanceof String) {
  327.      sb.append(XML.escape(e.toString()));
  328. } else if (e instanceof JSONObject) {
  329. sb.append(toString((JSONObject)e));
  330. } else if (e instanceof JSONArray) {
  331. sb.append(toString((JSONArray)e));
  332. }
  333.     }
  334. } while (i < length);
  335. sb.append('<');
  336.         sb.append('/');
  337. sb.append(tagName);
  338.         sb.append('>');
  339.     }
  340.         return sb.toString();
  341.     }
  342.     
  343.     /**
  344.      * Reverse the JSONML transformation, making an XML text from a JSONObject.
  345.      * The JSONObject must contain a "tagName" property. If it has children, 
  346.      * then it must have a "childNodes" property containing an array of objects. 
  347.      * The other properties are attributes with string values.
  348.      * @param jo A JSONObject.
  349.      * @return An XML string.
  350.      * @throws JSONException
  351.      */
  352. public static String toString(JSONObject jo) throws JSONException {
  353.     StringBuffer sb = new StringBuffer();
  354.     Object  e;
  355.     int          i;
  356.     JSONArray    ja;
  357.     String       k;
  358.     Iterator     keys;
  359.     int          len;
  360.     String       tagName;
  361.     String       v;
  362. //Emit <tagName
  363. tagName = jo.optString("tagName");
  364. if (tagName == null) {
  365. return XML.escape(jo.toString());
  366. }
  367. XML.noSpace(tagName);
  368. tagName = XML.escape(tagName);
  369. sb.append('<');
  370. sb.append(tagName);
  371. //Emit the attributes
  372.         keys = jo.keys();
  373.         while (keys.hasNext()) {
  374.             k = keys.next().toString();
  375.             if (!k.equals("tagName") && !k.equals("childNodes")) {
  376.              XML.noSpace(k);
  377.             v = jo.optString(k);
  378.             if (v != null) {
  379.             sb.append(' ');
  380.             sb.append(XML.escape(k));
  381.             sb.append('=');
  382.             sb.append('"');
  383.             sb.append(XML.escape(v));
  384.             sb.append('"');
  385.             }
  386.             }
  387.         }    
  388.      
  389. //Emit content in body
  390. ja = jo.optJSONArray("childNodes");
  391. if (ja == null) {
  392.         sb.append('/');
  393.         sb.append('>');
  394. } else {
  395.         sb.append('>');
  396. len = ja.length();
  397. for (i = 0; i < len; i += 1) {
  398.     e = ja.get(i);
  399.     if (e != null) {
  400.      if (e instanceof String) {
  401.      sb.append(XML.escape(e.toString()));
  402. } else if (e instanceof JSONObject) {
  403. sb.append(toString((JSONObject)e));
  404. } else if (e instanceof JSONArray) {
  405. sb.append(toString((JSONArray)e));
  406. }
  407.     }
  408. }
  409. sb.append('<');
  410.         sb.append('/');
  411. sb.append(tagName);
  412.         sb.append('>');
  413.     }
  414.         return sb.toString();
  415.     }
  416. }