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

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.HashMap;
  22. import java.util.Iterator;
  23. import java.util.Map;
  24. import java.util.NoSuchElementException;
  25. import java.text.ParseException;
  26. /**
  27.  * A JSONObject is an unordered collection of name/value pairs. Its
  28.  * external form is a string wrapped in curly braces with colons between the
  29.  * names and values, and commas between the values and names. The internal form
  30.  * is an object having get() and opt() methods for accessing the values by name,
  31.  * and put() methods for adding or replacing values by name. The values can be
  32.  * any of these types: Boolean, JSONArray, JSONObject, Number, String, or the
  33.  * JSONObject.NULL object.
  34.  * <p>
  35.  * The constructor can convert an external form string into an internal form
  36.  * Java object. The toString() method creates an external form string.
  37.  * <p>
  38.  * A get() method returns a value if one can be found, and throws an exception
  39.  * if one cannot be found. An opt() method returns a default value instead of
  40.  * throwing an exception, and so is useful for obtaining optional values.
  41.  * <p>
  42.  * The generic get() and opt() methods return an object, which you can cast or
  43.  * query for type. There are also typed get() and opt() methods that do type
  44.  * checking and type coersion for you.
  45.  * <p>
  46.  * The texts produced by the toString() methods are very strict.
  47.  * The constructors are more forgiving in the texts they will accept:
  48.  * <ul>
  49.  * <li>An extra <code>,</code>&nbsp;<small>(comma)</small> may appear just 
  50.  *     before the closing brace.</li>
  51.  * <li>Strings may be quoted with <code>'</code>&nbsp;<small>(single 
  52.  *     quote)</small>.</li>
  53.  * <li>Strings do not need to be quoted at all if they do not begin with a quote
  54.  *     or single quote, and if they do not contain leading or trailing spaces, 
  55.  *     and if they do not contain any of these characters:
  56.  *     <code>{ } [ ] /  : , = ; #</code> and if they do not look like numbers
  57.  *     and if they are not the reserved words <code>true</code>, 
  58.  *     <code>false</code>, or <code>null</code>.</li>
  59.  * <li>Keys can be followed by <code>=</code> or <code>=></code> as well as 
  60.  *     by <code>:</code></li>
  61.  * <li>Values can be followed by <code>;</code> as well as by <code>,</code></li>
  62.  * <li>Numbers may have the <code>0-</code> <small>(octal)</small> or 
  63.  *     <code>0x-</code> <small>(hex)</small> prefix.</li> 
  64.  * <li>Line comments can begin with <code>#</code></li>
  65.  * </ul>
  66.  * @author JSON.org
  67.  * @version 1
  68.  */
  69. public class JSONObject {
  70.     /**
  71.      * JSONObject.NULL is equivalent to the value that JavaScript calls null,
  72.      * whilst Java's null is equivalent to the value that JavaScript calls
  73.      * undefined.
  74.      */
  75.      private static final class Null {
  76.         /**
  77.          * Make a Null object.
  78.          */
  79.         private Null() {
  80.         }
  81.         /**
  82.          * There is only intended to be a single instance of the NULL object,
  83.          * so the clone method returns itself.
  84.          * @return     NULL.
  85.          */
  86.         protected final Object clone() {
  87.             return this;
  88.         }
  89.         /**
  90.          * A Null object is equal to the null value and to itself.
  91.          * @param object    An object to test for nullness.
  92.          * @return true if the object parameter is the JSONObject.NULL object
  93.          *  or null.
  94.          */
  95.         public boolean equals(Object object) {
  96.             return object == null || object == this;
  97.         }
  98.         /**
  99.          * Get the "null" string value.
  100.          * @return The string "null".
  101.          */
  102.         public String toString() {
  103.             return "null";
  104.         }
  105.     }
  106.     /**
  107.      * The hash map where the JSONObject's properties are kept.
  108.      */
  109.     private HashMap myHashMap;
  110.     /**
  111.      * It is sometimes more convenient and less ambiguous to have a NULL
  112.      * object than to use Java's null value.
  113.      * JSONObject.NULL.equals(null) returns true.
  114.      * JSONObject.NULL.toString() returns "null".
  115.      */
  116.     public static final Object NULL = new Null();
  117.     /**
  118.      * Construct an empty JSONObject.
  119.      */
  120.     public JSONObject() {
  121.         myHashMap = new HashMap();
  122.     }
  123.     /**
  124.      * Construct a JSONObject from a JSONTokener.
  125.      * @throws ParseException if there is a syntax error in the source string.
  126.      * @param x A JSONTokener object containing the source string.
  127.      */
  128.     public JSONObject(JSONTokener x) throws ParseException {
  129.         this();
  130.         char c;
  131.         String key;
  132.         if (x.nextClean() != '{') {
  133.             throw x.syntaxError("A JSONObject must begin with '{'");
  134.         }
  135.         while (true) {
  136.             c = x.nextClean();
  137.             switch (c) {
  138.             case 0:
  139.                 throw x.syntaxError("A JSONObject must end with '}'");
  140.             case '}':
  141.                 return;
  142.             default:
  143.                 x.back();
  144.                 key = x.nextValue().toString();
  145.             }
  146.             c = x.nextClean();
  147. if (c == '=') {
  148. if (x.next() != '>') {
  149. x.back();
  150. }
  151. } else if (c != ':') {
  152.                 throw x.syntaxError("Expected a ':' after a key");
  153.             }
  154.             myHashMap.put(key, x.nextValue());
  155.             switch (x.nextClean()) {
  156. case ';':
  157.             case ',':
  158.                 if (x.nextClean() == '}') {
  159.                     return;
  160.                 }
  161.                 x.back();
  162.                 break;
  163.             case '}':
  164.                 return;
  165.             default:
  166.                 throw x.syntaxError("Expected a ',' or '}'");
  167.             }
  168.         }
  169.     }
  170.     /**
  171.      * Construct a JSONObject from a string.
  172.      * @exception ParseException The string must be properly formatted.
  173.      * @param string    A string beginning 
  174.      *  with <code>{</code>&nbsp;<small>(left brace)</small> and ending 
  175.      *  with <code>}</code>&nbsp;<small>(right brace)</small>.
  176.      */
  177.     public JSONObject(String string) throws ParseException {
  178.         this(new JSONTokener(string));
  179.     }
  180.     /**
  181.      * Construct a JSONObject from a Map.
  182.      * @param map A map object that can be used to initialize the contents of
  183.      *  the JSONObject.
  184.      */
  185.     public JSONObject(Map map) {
  186.         myHashMap = new HashMap(map);
  187.     }
  188.     /**
  189.      * Accumulate values under a key. It is similar to the put method except
  190.      * that if there is already an object stored under the key then a
  191.      * JSONArray is stored under the key to hold all of the accumulated values.
  192.      * If there is already a JSONArray, then the new value is appended to it.
  193.      * In contrast, the put method replaces the previous value.
  194.      * @throws NullPointerException if the key is null
  195.      * @param key   A key string.
  196.      * @param value An object to be accumulated under the key.
  197.      * @return this.
  198.      */
  199.     public JSONObject accumulate(String key, Object value)
  200.             throws NullPointerException {
  201.         JSONArray a;
  202.         Object o = opt(key);
  203.         if (o == null) {
  204.             put(key, value);
  205.         } else if (o instanceof JSONArray) {
  206.             a = (JSONArray)o;
  207.             a.put(value);
  208.         } else {
  209.             a = new JSONArray();
  210.             a.put(o);
  211.             a.put(value);
  212.             put(key, a);
  213.         }
  214.         return this;
  215.     }
  216.     /**
  217.      * Get the value object associated with a key.
  218.      * @exception NoSuchElementException if the key is not found.
  219.      *
  220.      * @param key   A key string.
  221.      * @return      The object associated with the key.
  222.      */
  223.     public Object get(String key) throws NoSuchElementException {
  224.         Object o = opt(key);
  225.         if (o == null) {
  226.             throw new NoSuchElementException("JSONObject[" +
  227.                 quote(key) + "] not found.");
  228.         }
  229.         return o;
  230.     }
  231.     /**
  232.      * Get the boolean value associated with a key.
  233.      * @exception NoSuchElementException if the key is not found.
  234.      * @exception ClassCastException
  235.      *  if the value is not a Boolean or the String "true" or "false".
  236.      *
  237.      * @param key   A key string.
  238.      * @return      The truth.
  239.      */
  240.     public boolean getBoolean(String key)
  241.             throws ClassCastException, NoSuchElementException {
  242.         Object o = get(key);
  243.         if (o == Boolean.FALSE || 
  244. (o instanceof String && 
  245. ((String)o).equalsIgnoreCase("false"))) {
  246.             return false;
  247.         } else if (o == Boolean.TRUE || 
  248. (o instanceof String && 
  249. ((String)o).equalsIgnoreCase("true"))) {
  250.             return true;
  251.         }
  252.         throw new ClassCastException("JSONObject[" +
  253.             quote(key) + "] is not a Boolean.");
  254.     }
  255.     /**
  256.      * Get the double value associated with a key.
  257.      * @exception NoSuchElementException if the key is not found or
  258.      *  if the value is a Number object.
  259.      * @exception NumberFormatException if the value cannot be converted to a
  260.      *  number.
  261.      * @param key   A key string.
  262.      * @return      The numeric value.
  263.      */
  264.     public double getDouble(String key)
  265.             throws NoSuchElementException, NumberFormatException {
  266.         Object o = get(key);
  267.         if (o instanceof Number) {
  268.             return ((Number)o).doubleValue();
  269.         }
  270.         if (o instanceof String) {
  271.             return new Double((String)o).doubleValue();
  272.         }
  273.         throw new NumberFormatException("JSONObject[" +
  274.             quote(key) + "] is not a number.");
  275.     }
  276.     /**
  277.      * Get the HashMap the holds that contents of the JSONObject.
  278.      * @return The getHashMap.
  279.      */
  280.      HashMap getHashMap() {
  281.         return myHashMap;
  282.      }
  283.     /**
  284.      * Get the int value associated with a key.
  285.      * @exception NoSuchElementException if the key is not found
  286.      * @exception NumberFormatException
  287.      *  if the value cannot be converted to a number.
  288.      *
  289.      * @param key   A key string.
  290.      * @return      The integer value.
  291.      */
  292.     public int getInt(String key)
  293.             throws NoSuchElementException, NumberFormatException {
  294.         Object o = get(key);
  295.         if (o instanceof Number) {
  296.             return ((Number)o).intValue();
  297.         }
  298.         return (int)getDouble(key);
  299.     }
  300.     /**
  301.      * Get the JSONArray value associated with a key.
  302.      * @exception NoSuchElementException if the key is not found or
  303.      *  if the value is not a JSONArray.
  304.      *
  305.      * @param key   A key string.
  306.      * @return      A JSONArray which is the value.
  307.      */
  308.     public JSONArray getJSONArray(String key) throws NoSuchElementException {
  309.         Object o = get(key);
  310.         if (o instanceof JSONArray) {
  311.             return (JSONArray)o;
  312.         }
  313.         throw new NoSuchElementException("JSONObject[" +
  314.             quote(key) + "] is not a JSONArray.");
  315.     }
  316.     /**
  317.      * Get the JSONObject value associated with a key.
  318.      * @exception NoSuchElementException if the key is not found or
  319.      *  if the value is not a JSONObject.
  320.      *
  321.      * @param key   A key string.
  322.      * @return      A JSONObject which is the value.
  323.      */
  324.     public JSONObject getJSONObject(String key) throws NoSuchElementException {
  325.         Object o = get(key);
  326.         if (o instanceof JSONObject) {
  327.             return (JSONObject)o;
  328.         }
  329.         throw new NoSuchElementException("JSONObject[" +
  330.             quote(key) + "] is not a JSONObject.");
  331.     }
  332.     /**
  333.      * Get the string associated with a key.
  334.      * @exception NoSuchElementException if the key is not found.
  335.      *
  336.      * @param key   A key string.
  337.      * @return      A string which is the value.
  338.      */
  339.     public String getString(String key) throws NoSuchElementException {
  340.         return get(key).toString();
  341.     }
  342.     /**
  343.      * Determine if the JSONObject contains a specific key.
  344.      * @param key   A key string.
  345.      * @return      true if the key exists in the JSONObject.
  346.      */
  347.     public boolean has(String key) {
  348.         return myHashMap.containsKey(key);
  349.     }
  350.     /**
  351.      * Determine if the value associated with the key is null or if there is
  352.      *  no value.
  353.      * @param key   A key string.
  354.      * @return      true if there is no value associated with the key or if
  355.      *  the value is the JSONObject.NULL object.
  356.      */
  357.     public boolean isNull(String key) {
  358.         return JSONObject.NULL.equals(opt(key));
  359.     }
  360.     /**
  361.      * Get an enumeration of the keys of the JSONObject.
  362.      *
  363.      * @return An iterator of the keys.
  364.      */
  365.     public Iterator keys() {
  366.         return myHashMap.keySet().iterator();
  367.     }
  368.     /**
  369.      * Get the number of keys stored in the JSONObject.
  370.      *
  371.      * @return The number of keys in the JSONObject.
  372.      */
  373.     public int length() {
  374.         return myHashMap.size();
  375.     }
  376.     /**
  377.      * Produce a JSONArray containing the names of the elements of this
  378.      * JSONObject.
  379.      * @return A JSONArray containing the key strings, or null if the JSONObject
  380.      * is empty.
  381.      */
  382.     public JSONArray names() {
  383.         JSONArray ja = new JSONArray();
  384.         Iterator  keys = keys();
  385.         while (keys.hasNext()) {
  386.             ja.put(keys.next());
  387.         }
  388.         if (ja.length() == 0) {
  389.             return null;
  390.         }
  391.         return ja;
  392.     }
  393.     /**
  394.      * Produce a string from a number.
  395.      * @exception ArithmeticException JSON can only serialize finite numbers.
  396.      * @param  n A Number
  397.      * @return A String.
  398.      */
  399.     static public String numberToString(Number n) throws ArithmeticException {
  400.         if (
  401.                 (n instanceof Float &&
  402.                     (((Float)n).isInfinite() || ((Float)n).isNaN())) ||
  403.                 (n instanceof Double &&
  404.                     (((Double)n).isInfinite() || ((Double)n).isNaN()))) {
  405.             throw new ArithmeticException(
  406.                 "JSON can only serialize finite numbers.");
  407.         }
  408. // Shave off trailing zeros and decimal point, if possible.
  409.         String s = n.toString().toLowerCase();
  410.         if (s.indexOf('e') < 0 && s.indexOf('.') > 0) {
  411.             while (s.endsWith("0")) {
  412.                 s = s.substring(0, s.length() - 1);
  413.             }
  414.             if (s.endsWith(".")) {
  415.                 s = s.substring(0, s.length() - 1);
  416.             }
  417.         }
  418.         return s;
  419.     }
  420.     /**
  421.      * Get an optional value associated with a key.
  422.      * @exception NullPointerException  The key must not be null.
  423.      * @param key   A key string.
  424.      * @return      An object which is the value, or null if there is no value.
  425.      */
  426.     public Object opt(String key) throws NullPointerException {
  427.         if (key == null) {
  428.             throw new NullPointerException("Null key");
  429.         }
  430.         return myHashMap.get(key);
  431.     }
  432.     /**
  433.      * Get an optional boolean associated with a key.
  434.      * It returns false if there is no such key, or if the value is not
  435.      * Boolean.TRUE or the String "true".
  436.      *
  437.      * @param key   A key string.
  438.      * @return      The truth.
  439.      */
  440.     public boolean optBoolean(String key) {
  441.         return optBoolean(key, false);
  442.     }
  443.     /**
  444.      * Get an optional boolean associated with a key.
  445.      * It returns the defaultValue if there is no such key, or if it is not
  446.      * a Boolean or the String "true" or "false" (case insensitive).
  447.      *
  448.      * @param key              A key string.
  449.      * @param defaultValue     The default.
  450.      * @return      The truth.
  451.      */
  452.     public boolean optBoolean(String key, boolean defaultValue) {
  453.         Object o = opt(key);
  454.         if (o != null) {
  455.             if (o == Boolean.FALSE || 
  456. (o instanceof String && 
  457. ((String)o).equalsIgnoreCase("false"))) {
  458.                 return false;
  459.             } else if (o == Boolean.TRUE || 
  460. (o instanceof String && 
  461. ((String)o).equalsIgnoreCase("true"))) {
  462.                 return true;
  463.             }
  464.         }
  465.         return defaultValue;
  466.     }
  467.     /**
  468.      * Get an optional double associated with a key,
  469.      * or NaN if there is no such key or if its value is not a number.
  470.      * If the value is a string, an attempt will be made to evaluate it as
  471.      * a number.
  472.      *
  473.      * @param key   A string which is the key.
  474.      * @return      An object which is the value.
  475.      */
  476.     public double optDouble(String key)  {
  477.         return optDouble(key, Double.NaN);
  478.     }
  479.     /**
  480.      * Get an optional double associated with a key, or the
  481.      * defaultValue if there is no such key or if its value is not a number.
  482.      * If the value is a string, an attempt will be made to evaluate it as
  483.      * a number.
  484.      *
  485.      * @param key   A key string.
  486.      * @param defaultValue     The default.
  487.      * @return      An object which is the value.
  488.      */
  489.     public double optDouble(String key, double defaultValue)  {
  490.         Object o = opt(key);
  491.         if (o != null) {
  492.             if (o instanceof Number) {
  493.                 return ((Number)o).doubleValue();
  494.             }
  495.             try {
  496.                 return new Double((String)o).doubleValue();
  497.             }
  498.             catch (Exception e) {
  499.             }
  500.         }
  501.         return defaultValue;
  502.     }
  503.     /**
  504.      * Get an optional int value associated with a key,
  505.      * or zero if there is no such key or if the value is not a number.
  506.      * If the value is a string, an attempt will be made to evaluate it as
  507.      * a number.
  508.      *
  509.      * @param key   A key string.
  510.      * @return      An object which is the value.
  511.      */
  512.     public int optInt(String key) {
  513.         return optInt(key, 0);
  514.     }
  515.     /**
  516.      * Get an optional int value associated with a key,
  517.      * or the default if there is no such key or if the value is not a number.
  518.      * If the value is a string, an attempt will be made to evaluate it as
  519.      * a number.
  520.      *
  521.      * @param key   A key string.
  522.      * @param defaultValue     The default.
  523.      * @return      An object which is the value.
  524.      */
  525.     public int optInt(String key, int defaultValue) {
  526.         Object o = opt(key);
  527.         if (o != null) {
  528.             if (o instanceof Number) {
  529.                 return ((Number)o).intValue();
  530.             }
  531.             try {
  532.                 return Integer.parseInt((String)o);
  533.             } catch (Exception e) {
  534.             }
  535.         }
  536.         return defaultValue;
  537.     }
  538.     /**
  539.      * Get an optional JSONArray associated with a key.
  540.      * It returns null if there is no such key, or if its value is not a
  541.      * JSONArray.
  542.      *
  543.      * @param key   A key string.
  544.      * @return      A JSONArray which is the value.
  545.      */
  546.     public JSONArray optJSONArray(String key) {
  547.         Object o = opt(key);
  548.         if (o instanceof JSONArray) {
  549.             return (JSONArray) o;
  550.         }
  551.         return null;
  552.     }
  553.     /**
  554.      * Get an optional JSONObject associated with a key.
  555.      * It returns null if there is no such key, or if its value is not a
  556.      * JSONObject.
  557.      *
  558.      * @param key   A key string.
  559.      * @return      A JSONObject which is the value.
  560.      */
  561.     public JSONObject optJSONObject(String key) {
  562.         Object o = opt(key);
  563.         if (o instanceof JSONObject) {
  564.             return (JSONObject)o;
  565.         }
  566.         return null;
  567.     }
  568.     /**
  569.      * Get an optional string associated with a key.
  570.      * It returns an empty string if there is no such key. If the value is not
  571.      * a string and is not null, then it is coverted to a string.
  572.      *
  573.      * @param key   A key string.
  574.      * @return      A string which is the value.
  575.      */
  576.     public String optString(String key) {
  577.         return optString(key, "");
  578.     }
  579.     /**
  580.      * Get an optional string associated with a key.
  581.      * It returns the defaultValue if there is no such key.
  582.      *
  583.      * @param key   A key string.
  584.      * @param defaultValue     The default.
  585.      * @return      A string which is the value.
  586.      */
  587.     public String optString(String key, String defaultValue) {
  588.         Object o = opt(key);
  589.         if (o != null) {
  590.             return o.toString();
  591.         }
  592.         return defaultValue;
  593.     }
  594.     /**
  595.      * Put a key/boolean pair in the JSONObject.
  596.      *
  597.      * @param key   A key string.
  598.      * @param value A boolean which is the value.
  599.      * @return this.
  600.      */
  601.     public JSONObject put(String key, boolean value) {
  602.         put(key, new Boolean(value));
  603.         return this;
  604.     }
  605.     /**
  606.      * Put a key/double pair in the JSONObject.
  607.      *
  608.      * @param key   A key string.
  609.      * @param value A double which is the value.
  610.      * @return this.
  611.      */
  612.     public JSONObject put(String key, double value) {
  613.         put(key, new Double(value));
  614.         return this;
  615.     }
  616.     /**
  617.      * Put a key/int pair in the JSONObject.
  618.      *
  619.      * @param key   A key string.
  620.      * @param value An int which is the value.
  621.      * @return this.
  622.      */
  623.     public JSONObject put(String key, int value) {
  624.         put(key, new Integer(value));
  625.         return this;
  626.     }
  627.     /**
  628.      * Put a key/value pair in the JSONObject. If the value is null,
  629.      * then the key will be removed from the JSONObject if it is present.
  630.      * @exception NullPointerException The key must be non-null.
  631.      * @param key   A key string.
  632.      * @param value An object which is the value. It should be of one of these
  633.      *  types: Boolean, Double, Integer, JSONArray, JSONObject, String, or the
  634.      *  JSONObject.NULL object.
  635.      * @return this.
  636.      */
  637.     public JSONObject put(String key, Object value) throws NullPointerException {
  638.         if (key == null) {
  639.             throw new NullPointerException("Null key.");
  640.         }
  641.         if (value != null) {
  642.             myHashMap.put(key, value);
  643.         } else {
  644.             remove(key);
  645.         }
  646.         return this;
  647.     }
  648.     /**
  649.      * Put a key/value pair in the JSONObject, but only if the
  650.      * value is non-null.
  651.      * @exception NullPointerException The key must be non-null.
  652.      * @param key   A key string.
  653.      * @param value An object which is the value. It should be of one of these
  654.      *  types: Boolean, Double, Integer, JSONArray, JSONObject, String, or the
  655.      *  JSONObject.NULL object.
  656.      * @return this.
  657.      */
  658.     public JSONObject putOpt(String key, Object value) throws NullPointerException {
  659.         if (value != null) {
  660.             put(key, value);
  661.         }
  662.         return this;
  663.     }
  664.     /**
  665.      * Produce a string in double quotes with backslash sequences in all the
  666.      * right places.
  667.      * @param string A String
  668.      * @return  A String correctly formatted for insertion in a JSON message.
  669.      */
  670.     public static String quote(String string) {
  671.         if (string == null || string.length() == 0) {
  672.             return """";
  673.         }
  674.         char         c;
  675.         int          i;
  676.         int          len = string.length();
  677.         StringBuffer sb = new StringBuffer(len + 4);
  678.         String       t;
  679.         sb.append('"');
  680.         for (i = 0; i < len; i += 1) {
  681.             c = string.charAt(i);
  682.             switch (c) {
  683.             case '\':
  684.             case '"':
  685.             case '/':
  686.                 sb.append('\');
  687.                 sb.append(c);
  688.                 break;
  689.             case 'b':
  690.                 sb.append("\b");
  691.                 break;
  692.             case 't':
  693.                 sb.append("\t");
  694.                 break;
  695.             case 'n':
  696.                 sb.append("\n");
  697.                 break;
  698.             case 'f':
  699.                 sb.append("\f");
  700.                 break;
  701.             case 'r':
  702.                 sb.append("\r");
  703.                 break;
  704.             default:
  705.                 if (c < ' ') {
  706.                     t = "000" + Integer.toHexString(c);
  707.                     sb.append("\u" + t.substring(t.length() - 4));
  708.                 } else {
  709.                     sb.append(c);
  710.                 }
  711.             }
  712.         }
  713.         sb.append('"');
  714.         return sb.toString();
  715.     }
  716.     /**
  717.      * Remove a name and its value, if present.
  718.      * @param key The name to be removed.
  719.      * @return The value that was associated with the name,
  720.      * or null if there was no value.
  721.      */
  722.     public Object remove(String key) {
  723.         return myHashMap.remove(key);
  724.     }
  725.     /**
  726.      * Produce a JSONArray containing the values of the members of this
  727.      * JSONObject.
  728.      * @param names A JSONArray containing a list of key strings. This
  729.      * determines the sequence of the values in the result.
  730.      * @return A JSONArray of values.
  731.      */
  732.     public JSONArray toJSONArray(JSONArray names) {
  733.         if (names == null || names.length() == 0) {
  734.             return null;
  735.         }
  736.         JSONArray ja = new JSONArray();
  737.         for (int i = 0; i < names.length(); i += 1) {
  738.             ja.put(this.opt(names.getString(i)));
  739.         }
  740.         return ja;
  741.     }
  742.     /**
  743.      * Make an JSON external form string of this JSONObject. For compactness, no
  744.      * unnecessary whitespace is added.
  745.      * <p>
  746.      * Warning: This method assumes that the data structure is acyclical.
  747.      *
  748.      * @return a printable, displayable, portable, transmittable
  749.      *  representation of the object, beginning 
  750.      *  with <code>{</code>&nbsp;<small>(left brace)</small> and ending 
  751.      *  with <code>}</code>&nbsp;<small>(right brace)</small>.
  752.      */
  753.     public String toString() {
  754.         Iterator     keys = keys();
  755.         Object       o = null;
  756.         String       s;
  757.         StringBuffer sb = new StringBuffer();
  758.         sb.append('{');
  759.         while (keys.hasNext()) {
  760.             if (o != null) {
  761.                 sb.append(',');
  762.             }
  763.             s = keys.next().toString();
  764.             o = myHashMap.get(s);
  765.             if (o != null) {
  766.                 sb.append(quote(s));
  767.                 sb.append(':');
  768.                 if (o instanceof String) {
  769.                     sb.append(quote((String)o));
  770.                 } else if (o instanceof Number) {
  771.                     sb.append(numberToString((Number)o));
  772.                 } else {
  773.                     sb.append(o.toString());
  774.                 }
  775.             }
  776.         }
  777.         sb.append('}');
  778.         return sb.toString();
  779.     }
  780.     /**
  781.      * Make a prettyprinted JSON external form string of this JSONObject.
  782.      * <p>
  783.      * Warning: This method assumes that the data structure is acyclical.
  784.      * @param indentFactor The number of spaces to add to each level of
  785.      *  indentation.
  786.      * @return a printable, displayable, portable, transmittable
  787.      *  representation of the object, beginning
  788.      *  with <code>{</code>&nbsp;<small>(left brace)</small> and ending 
  789.      *  with <code>}</code>&nbsp;<small>(right brace)</small>.
  790.      */
  791.     public String toString(int indentFactor) {
  792.         return toString(indentFactor, 0);
  793.     }
  794.     /**
  795.      * Make a prettyprinted JSON string of this JSONObject.
  796.      * <p>
  797.      * Warning: This method assumes that the data structure is acyclical.
  798.      * @param indentFactor The number of spaces to add to each level of
  799.      *  indentation.
  800.      * @param indent The indentation of the top level.
  801.      * @return a printable, displayable, transmittable
  802.      *  representation of the object, beginning 
  803.      *  with <code>{</code>&nbsp;<small>(left brace)</small> and ending 
  804.      *  with <code>}</code>&nbsp;<small>(right brace)</small>.
  805.      */
  806.     String toString(int indentFactor, int indent) {
  807.         int          i;
  808.         Iterator     keys = keys();
  809.         String       pad = "";
  810.         StringBuffer sb = new StringBuffer();
  811.         int newindent = indent + indentFactor;
  812.         for (i = 0; i < newindent; i += 1) {
  813.             pad += ' ';
  814.         }
  815.         sb.append('{');
  816.         while (keys.hasNext()) {
  817.             String s = keys.next().toString();
  818.             Object o = myHashMap.get(s);
  819.             if (o != null) {
  820.                 if (sb.length() > 1) {
  821.                     sb.append(",n");
  822.                 } else {
  823. sb.append('n');
  824.                 }
  825.                 sb.append(pad);
  826.                 sb.append(quote(s));
  827.                 sb.append(": ");
  828.                 if (o instanceof String) {
  829.                     sb.append(quote((String)o));
  830.                 } else if (o instanceof Number) {
  831.                     sb.append(numberToString((Number) o));
  832.                 } else if (o instanceof JSONObject) {
  833.                     sb.append(((JSONObject)o).toString(indentFactor, newindent));
  834.                 } else if (o instanceof JSONArray) {
  835.                     sb.append(((JSONArray)o).toString(indentFactor, newindent));
  836.                 } else {
  837.                     sb.append(o.toString());
  838.                 }
  839.             }
  840.         }
  841. if (sb.length() > 1) {
  842. sb.append('n');
  843.         for (i = 0; i < indent; i += 1) {
  844. sb.append(' ');
  845.         }
  846. }
  847.         sb.append('}');
  848.         return sb.toString();
  849.     }
  850. }