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

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