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

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.text.ParseException;
  22. import java.util.ArrayList;
  23. import java.util.Collection;
  24. import java.util.NoSuchElementException;
  25. /**
  26.  * A JSONArray is an ordered sequence of values. Its external form is a string
  27.  * wrapped in square brackets with commas between the values. The internal form
  28.  * is an object having get() and opt() methods for accessing the values by
  29.  * index, and put() methods for adding or replacing values. The values can be
  30.  * any of these types: Boolean, JSONArray, JSONObject, Number, String, or the
  31.  * JSONObject.NULL object.
  32.  * <p>
  33.  * The constructor can convert a JSON external form string into an
  34.  * internal form Java object. The toString() method creates an external
  35.  * form string.
  36.  * <p>
  37.  * A get() method returns a value if one can be found, and throws an exception
  38.  * if one cannot be found. An opt() method returns a default value instead of
  39.  * throwing an exception, and so is useful for obtaining optional values.
  40.  * <p>
  41.  * The generic get() and opt() methods return an object which you can cast or
  42.  * query for type. There are also typed get() and opt() methods that do typing
  43.  * checking and type coersion for you.
  44.  * <p>
  45.  * The texts produced by the toString() methods are very strict.
  46.  * The constructors are more forgiving in the texts they will accept.
  47.  * <ul>
  48.  * <li>An extra <code>,</code>&nbsp;<small>(comma)</small> may appear just 
  49.  *     before the closing bracket.</li>
  50.  * <li>The null value will be inserted when there 
  51.  *     is <code>,</code>&nbsp;<small>(comma)</small> elision.</li>
  52.  * <li>Strings may be quoted with <code>'</code>&nbsp;<small>(single 
  53.  *     quote)</small>.</li>
  54.  * <li>Strings do not need to be quoted at all if they do not begin with a quote
  55.  *     or single quote, and if they do not contain leading or trailing spaces, 
  56.  *     and if they do not contain any of these characters:
  57.  *     <code>{ } [ ] /  : , = ; #</code> and if they do not look like numbers
  58.  *     and if they are not the reserved words <code>true</code>, 
  59.  *     <code>false</code>, or <code>null</code>.</li>
  60.  * <li>Values can be followed by <code>;</code> as well as by <code>,</code></li>
  61.  * <li>Numbers may have the <code>0-</code> <small>(octal)</small> or 
  62.  *     <code>0x-</code> <small>(hex)</small> prefix.</li> 
  63.  * <li>Line comments can begin with <code>#</code></li>
  64.  * </ul>
  65.  * @author JSON.org
  66.  * @version 1
  67.  */
  68. public class JSONArray {
  69.     /**
  70.      * The getArrayList where the JSONArray's properties are kept.
  71.      */
  72.     private ArrayList myArrayList;
  73.     /**
  74.      * Construct an empty JSONArray.
  75.      */
  76.     public JSONArray() {
  77.         myArrayList = new ArrayList();
  78.     }
  79.     /**
  80.      * Construct a JSONArray from a JSONTokener.
  81.      * @exception ParseException A JSONArray must start with '['
  82.      * @exception ParseException Expected a ',' or ']'
  83.      * @param x A JSONTokener
  84.      */
  85.     public JSONArray(JSONTokener x) throws ParseException {
  86.         this();
  87.         if (x.nextClean() != '[') {
  88.             throw x.syntaxError("A JSONArray must start with '['");
  89.         }
  90.         if (x.nextClean() == ']') {
  91.             return;
  92.         }
  93.         x.back();
  94.         while (true) {
  95.             if (x.nextClean() == ',') {
  96.                 x.back();
  97.                 myArrayList.add(null);
  98.             } else {
  99.                 x.back();
  100.                 myArrayList.add(x.nextValue());
  101.             }
  102.             switch (x.nextClean()) {
  103. case ';':
  104.             case ',':
  105.                 if (x.nextClean() == ']') {
  106.                     return;
  107.                 }
  108.                 x.back();
  109.                 break;
  110.             case ']':
  111.                 return;
  112.             default:
  113.                 throw x.syntaxError("Expected a ',' or ']'");
  114.             }
  115.         }
  116.     }
  117.     /**
  118.      * Construct a JSONArray from a source string.
  119.      * @exception ParseException The string must conform to JSON syntax.
  120.      * @param string     A string that begins with 
  121.      * <code>[</code>&nbsp;<small>(left bracket)</small>
  122.      *  and ends with <code>]</code>&nbsp;<small>(right bracket)</small>.
  123.      */
  124.     public JSONArray(String string) throws ParseException {
  125.         this(new JSONTokener(string));
  126.     }
  127.     /**
  128.      * Construct a JSONArray from a Collection.
  129.      * @param collection     A Collection.
  130.      */
  131.     public JSONArray(Collection collection) {
  132.         myArrayList = new ArrayList(collection);
  133.     }
  134.     /**
  135.      * Get the object value associated with an index.
  136.      * @exception NoSuchElementException
  137.      * @param index 
  138.      *  The index must be between 0 and length() - 1.
  139.      * @return An object value.
  140.      */
  141.     public Object get(int index) throws NoSuchElementException {
  142.         Object o = opt(index);
  143.         if (o == null) {
  144.             throw new NoSuchElementException("JSONArray[" + index +
  145.                 "] not found.");
  146.         }
  147.         return o;
  148.     }
  149.     /**
  150.      * Get the ArrayList which is holding the elements of the JSONArray.
  151.      * @return      The ArrayList.
  152.      */
  153.     ArrayList getArrayList() {
  154.         return myArrayList;
  155.     }
  156.     /**
  157.      * Get the boolean value associated with an index.
  158.      * The string values "true" and "false" are converted to boolean.
  159.      *
  160.      * @exception NoSuchElementException if the index is not found
  161.      * @exception ClassCastException
  162.      * @param index The index must be between 0 and length() - 1.
  163.      * @return      The truth.
  164.      */
  165.     public boolean getBoolean(int index)
  166.             throws ClassCastException, NoSuchElementException {
  167.         Object o = get(index);
  168.         if (o == Boolean.FALSE || 
  169. (o instanceof String && 
  170. ((String)o).equalsIgnoreCase("false"))) {
  171.             return false;
  172.         } else if (o == Boolean.TRUE || 
  173. (o instanceof String && 
  174. ((String)o).equalsIgnoreCase("true"))) {
  175.             return true;
  176.         }
  177.         throw new ClassCastException("JSONArray[" + index +
  178.             "] not a Boolean.");
  179.     }
  180.     /**
  181.      * Get the double value associated with an index.
  182.      * @exception NoSuchElementException if the key is not found
  183.      * @exception NumberFormatException
  184.      *  if the value cannot be converted to a number.
  185.      *
  186.      * @param index The index must be between 0 and length() - 1.
  187.      * @return      The value.
  188.      */
  189.     public double getDouble(int index)
  190.             throws NoSuchElementException, NumberFormatException {
  191.         Object o = get(index);
  192.         if (o instanceof Number) {
  193.             return ((Number) o).doubleValue();
  194.         }
  195.         if (o instanceof String) {
  196.             return new Double((String)o).doubleValue();
  197.         }
  198.         throw new NumberFormatException("JSONObject[" +
  199.             index + "] is not a number.");
  200.     }
  201.     /**
  202.      * Get the int value associated with an index.
  203.      * @exception NoSuchElementException if the key is not found
  204.      * @exception NumberFormatException
  205.      *  if the value cannot be converted to a number.
  206.      *
  207.      * @param index The index must be between 0 and length() - 1.
  208.      * @return      The value.
  209.      */
  210.     public int getInt(int index)
  211.             throws NoSuchElementException, NumberFormatException {
  212.         Object o = get(index);
  213.         if (o instanceof Number) {
  214.             return ((Number)o).intValue();
  215.         }
  216.         return (int)getDouble(index);
  217.     }
  218.     /**
  219.      * Get the JSONArray associated with an index.
  220.      * @exception NoSuchElementException if the index is not found or if the
  221.      * value is not a JSONArray
  222.      * @param index The index must be between 0 and length() - 1.
  223.      * @return      A JSONArray value.
  224.      */
  225.     public JSONArray getJSONArray(int index) throws NoSuchElementException {
  226.         Object o = get(index);
  227.         if (o instanceof JSONArray) {
  228.             return (JSONArray)o;
  229.         }
  230.         throw new NoSuchElementException("JSONArray[" + index +
  231.                 "] is not a JSONArray.");
  232.     }
  233.     /**
  234.      * Get the JSONObject associated with an index.
  235.      * @exception NoSuchElementException if the index is not found or if the
  236.      * value is not a JSONObject
  237.      * @param index subscript
  238.      * @return      A JSONObject value.
  239.      */
  240.     public JSONObject getJSONObject(int index) throws NoSuchElementException {
  241.         Object o = get(index);
  242.         if (o instanceof JSONObject) {
  243.             return (JSONObject)o;
  244.         }
  245.         throw new NoSuchElementException("JSONArray[" + index +
  246.             "] is not a JSONObject.");
  247.     }
  248.     /**
  249.      * Get the string associated with an index.
  250.      * @exception NoSuchElementException
  251.      * @param index The index must be between 0 and length() - 1.
  252.      * @return      A string value.
  253.      */
  254.     public String getString(int index) throws NoSuchElementException {
  255.         return get(index).toString();
  256.     }
  257.     /**
  258.      * Determine if the value is null.
  259.      * @param index The index must be between 0 and length() - 1.
  260.      * @return true if the value at the index is null, or if there is no value.
  261.      */
  262.     public boolean isNull(int index) {
  263.         Object o = opt(index);
  264.         return o == null || o.equals(null);
  265.     }
  266.     /**
  267.      * Make a string from the contents of this JSONArray. The separator string
  268.      * is inserted between each element.
  269.      * Warning: This method assumes that the data structure is acyclical.
  270.      * @param separator A string that will be inserted between the elements.
  271.      * @return a string.
  272.      */
  273.     public String join(String separator) {
  274.         int i;
  275.         Object o;
  276.         StringBuffer sb = new StringBuffer();
  277.         for (i = 0; i < myArrayList.size(); i += 1) {
  278.             if (i > 0) {
  279.                 sb.append(separator);
  280.             }
  281.             o = myArrayList.get(i);
  282.             if (o == null) {
  283.                 sb.append("null");
  284.             } else if (o instanceof String) {
  285.                 sb.append(JSONObject.quote((String)o));
  286.             } else if (o instanceof Number) {
  287.                 sb.append(JSONObject.numberToString((Number)o));
  288.             } else {
  289.                 sb.append(o.toString());
  290.             }
  291.         }
  292.         return sb.toString();
  293.     }
  294.     /**
  295.      * Get the length of the JSONArray.
  296.      *
  297.      * @return The length (or size).
  298.      */
  299.     public int length() {
  300.         return myArrayList.size();
  301.     }
  302.     /**
  303.      * Get the optional object value associated with an index.
  304.      * @param index The index must be between 0 and length() - 1.
  305.      * @return      An object value, or null if there is no
  306.      *              object at that index.
  307.      */
  308.     public Object opt(int index) {
  309.         if (index < 0 || index >= length()) {
  310.             return null;
  311.         } else {
  312.             return myArrayList.get(index);
  313.         }
  314.     }
  315.     /**
  316.      * Get the optional boolean value associated with an index.
  317.      * It returns false if there is no value at that index,
  318.      * or if the value is not Boolean.TRUE or the String "true".
  319.      *
  320.      * @param index The index must be between 0 and length() - 1.
  321.      * @return      The truth.
  322.      */
  323.     public boolean optBoolean(int index)  {
  324.         return optBoolean(index, false);
  325.     }
  326.     /**
  327.      * Get the optional boolean value associated with an index.
  328.      * It returns the defaultValue if there is no value at that index or if it is not
  329.      * a Boolean or the String "true" or "false" (case insensitive).
  330.      *
  331.      * @param index The index must be between 0 and length() - 1.
  332.      * @param defaultValue     A boolean default.
  333.      * @return      The truth.
  334.      */
  335.     public boolean optBoolean(int index, boolean defaultValue)  {
  336.         Object o = opt(index);
  337.         if (o != null) {
  338.             if (o == Boolean.FALSE || 
  339. (o instanceof String && 
  340. ((String)o).equalsIgnoreCase("false"))) {
  341.                 return false;
  342.             } else if (o == Boolean.TRUE || 
  343. (o instanceof String && 
  344. ((String)o).equalsIgnoreCase("true"))) {
  345.                 return true;
  346.             }
  347.         }
  348.         return defaultValue;
  349.     }
  350.     /**
  351.      * Get the optional double value associated with an index.
  352.      * NaN is returned if the index is not found,
  353.      * or if the value is not a number and cannot be converted to a number.
  354.      *
  355.      * @param index The index must be between 0 and length() - 1.
  356.      * @return      The value.
  357.      */
  358.     public double optDouble(int index) {
  359.         return optDouble(index, Double.NaN);
  360.     }
  361.     /**
  362.      * Get the optional double value associated with an index.
  363.      * The defaultValue is returned if the index is not found,
  364.      * or if the value is not a number and cannot be converted to a number.
  365.      *
  366.      * @param index subscript
  367.      * @param defaultValue     The default value.
  368.      * @return      The value.
  369.      */
  370.     public double optDouble(int index, double defaultValue) {
  371.         Object o = opt(index);
  372.         if (o != null) {
  373.             if (o instanceof Number) {
  374.                 return ((Number) o).doubleValue();
  375.             }
  376.             try {
  377.                 return new Double((String)o).doubleValue();
  378.             }
  379.             catch (Exception e) {
  380.             }
  381.         }
  382.         return defaultValue;
  383.     }
  384.     /**
  385.      * Get the optional int value associated with an index.
  386.      * Zero is returned if the index is not found,
  387.      * or if the value is not a number and cannot be converted to a number.
  388.      *
  389.      * @param index The index must be between 0 and length() - 1.
  390.      * @return      The value.
  391.      */
  392.     public int optInt(int index) {
  393.         return optInt(index, 0);
  394.     }
  395.     /**
  396.      * Get the optional int value associated with an index.
  397.      * The defaultValue is returned if the index is not found,
  398.      * or if the value is not a number and cannot be converted to a number.
  399.      * @param index The index must be between 0 and length() - 1.
  400.      * @param defaultValue     The default value.
  401.      * @return      The value.
  402.      */
  403.     public int optInt(int index, int defaultValue) {
  404.         Object o = opt(index);
  405.         if (o != null) {
  406.             if (o instanceof Number) {
  407.                 return ((Number)o).intValue();
  408.             }
  409.             try {
  410.                 return Integer.parseInt((String)o);
  411.             }
  412.             catch (Exception e) {
  413.             }
  414.         }
  415.         return defaultValue;
  416.     }
  417.     /**
  418.      * Get the optional JSONArray associated with an index.
  419.      * @param index subscript
  420.      * @return      A JSONArray value, or null if the index has no value,
  421.      * or if the value is not a JSONArray.
  422.      */
  423.     public JSONArray optJSONArray(int index) {
  424.         Object o = opt(index);
  425.         if (o instanceof JSONArray) {
  426.             return (JSONArray)o;
  427.         }
  428.         return null;
  429.     }
  430.     /**
  431.      * Get the optional JSONObject associated with an index.
  432.      * Null is returned if the key is not found, or null if the index has
  433.      * no value, or if the value is not a JSONObject.
  434.      *
  435.      * @param index The index must be between 0 and length() - 1.
  436.      * @return      A JSONObject value.
  437.      */
  438.     public JSONObject optJSONObject(int index) {
  439.         Object o = opt(index);
  440.         if (o instanceof JSONObject) {
  441.             return (JSONObject)o;
  442.         }
  443.         return null;
  444.     }
  445.     /**
  446.      * Get the optional string value associated with an index. It returns an
  447.      * empty string if there is no value at that index. If the value
  448.      * is not a string and is not null, then it is coverted to a string.
  449.      *
  450.      * @param index The index must be between 0 and length() - 1.
  451.      * @return      A String value.
  452.      */
  453.     public String optString(int index){
  454.         return optString(index, "");
  455.     }
  456.     /**
  457.      * Get the optional string associated with an index.
  458.      * The defaultValue is returned if the key is not found.
  459.      *
  460.      * @param index The index must be between 0 and length() - 1.
  461.      * @param defaultValue     The default value.
  462.      * @return      A String value.
  463.      */
  464.     public String optString(int index, String defaultValue){
  465.         Object o = opt(index);
  466.         if (o != null) {
  467.             return o.toString();
  468.         }
  469.         return defaultValue;
  470.     }
  471.     /**
  472.      * Append a boolean value.
  473.      *
  474.      * @param value A boolean value.
  475.      * @return this.
  476.      */
  477.     public JSONArray put(boolean value) {
  478.         put(new Boolean(value));
  479.         return this;
  480.     }
  481.     /**
  482.      * Append a double value.
  483.      *
  484.      * @param value A double value.
  485.      * @return this.
  486.      */
  487.     public JSONArray put(double value) {
  488.         put(new Double(value));
  489.         return this;
  490.     }
  491.     /**
  492.      * Append an int value.
  493.      *
  494.      * @param value An int value.
  495.      * @return this.
  496.      */
  497.     public JSONArray put(int value) {
  498.         put(new Integer(value));
  499.         return this;
  500.     }
  501.     /**
  502.      * Append an object value.
  503.      * @param value An object value.  The value should be a
  504.      *  Boolean, Double, Integer, JSONArray, JSObject, or String, or the
  505.      *  JSONObject.NULL object.
  506.      * @return this.
  507.      */
  508.     public JSONArray put(Object value) {
  509.         myArrayList.add(value);
  510.         return this;
  511.     }
  512.     /**
  513.      * Put or replace a boolean value in the JSONArray.
  514.      * @exception NoSuchElementException The index must not be negative.
  515.      * @param index subscript The subscript. If the index is greater than the length of
  516.      *  the JSONArray, then null elements will be added as necessary to pad
  517.      *  it out.
  518.      * @param value A boolean value.
  519.      * @return this.
  520.      */
  521.     public JSONArray put(int index, boolean value) {
  522.         put(index, new Boolean(value));
  523.         return this;
  524.     }
  525.     /**
  526.      * Put or replace a double value.
  527.      * @exception NoSuchElementException The index must not be negative.
  528.      * @param index subscript The subscript. If the index is greater than the length of
  529.      *  the JSONArray, then null elements will be added as necessary to pad
  530.      *  it out.
  531.      * @param value A double value.
  532.      * return this.
  533.      */
  534.     public JSONArray put(int index, double value) {
  535.         put(index, new Double(value));
  536.         return this;
  537.     }
  538.     /**
  539.      * Put or replace an int value.
  540.      * @exception NoSuchElementException The index must not be negative.
  541.      * @param index subscript The subscript. If the index is greater than the length of
  542.      *  the JSONArray, then null elements will be added as necessary to pad
  543.      *  it out.
  544.      * @param value An int value.
  545.      * @return this.
  546.      */
  547.     public JSONArray put(int index, int value) {
  548.         put(index, new Integer(value));
  549.         return this;
  550.     }
  551.     /**
  552.      * Put or replace an object value in the JSONArray.
  553.      * @exception NoSuchElementException The index must not be negative.
  554.      * @param index The subscript. If the index is greater than the length of
  555.      *  the JSONArray, then null elements will be added as necessary to pad
  556.      *  it out.
  557.      * @param value An object value.
  558.      * return this.
  559.      */
  560.     public JSONArray put(int index, Object value)
  561.             throws NoSuchElementException, NullPointerException {
  562.         if (index < 0) {
  563.             throw new NoSuchElementException("JSONArray[" + index +
  564.                 "] not found.");
  565.         } else if (value == null) {
  566.             throw new NullPointerException();
  567.         } else if (index < length()) {
  568.             myArrayList.set(index, value);
  569.         } else {
  570.             while (index != length()) {
  571.                 put(null);
  572.             }
  573.             put(value);
  574.         }
  575.         return this;
  576.     }
  577.     /**
  578.      * Produce a JSONObject by combining a JSONArray of names with the values
  579.      * of this JSONArray.
  580.      * @param names A JSONArray containing a list of key strings. These will be
  581.      * paired with the values.
  582.      * @return A JSONObject, or null if there are no names or if this JSONArray
  583.      * has no values.
  584.      */
  585.     public JSONObject toJSONObject(JSONArray names) {
  586.         if (names == null || names.length() == 0 || length() == 0) {
  587.             return null;
  588.         }
  589.         JSONObject jo = new JSONObject();
  590.         for (int i = 0; i < names.length(); i += 1) {
  591.             jo.put(names.getString(i), this.opt(i));
  592.         }
  593.         return jo;
  594.     }
  595.     /**
  596.      * Make an JSON external form string of this JSONArray. For compactness, no
  597.      * unnecessary whitespace is added.
  598.      * Warning: This method assumes that the data structure is acyclical.
  599.      *
  600.      * @return a printable, displayable, transmittable
  601.      *  representation of the array.
  602.      */
  603.     public String toString() {
  604.         return '[' + join(",") + ']';
  605.     }
  606.     /**
  607.      * Make a prettyprinted JSON string of this JSONArray.
  608.      * Warning: This method assumes that the data structure is non-cyclical.
  609.      * @param indentFactor The number of spaces to add to each level of
  610.      *  indentation.
  611.      * @return a printable, displayable, transmittable
  612.      *  representation of the object, beginning 
  613.      *  with <code>[</code>&nbsp;<small>(left bracket)</small> and ending 
  614.      *  with <code>]</code>&nbsp;<small>(right bracket)</small>.
  615.      */
  616.     public String toString(int indentFactor) {
  617.         return toString(indentFactor, 0);
  618.     }
  619.     /**
  620.      * Make a prettyprinted string of this JSONArray.
  621.      * Warning: This method assumes that the data structure is non-cyclical.
  622.      * @param indentFactor The number of spaces to add to each level of
  623.      *  indentation.
  624.      * @param indent The indention of the top level.
  625.      * @return a printable, displayable, transmittable
  626.      *  representation of the array.
  627.      */
  628.     String toString(int indentFactor, int indent) {
  629.         int i;
  630.         Object o;
  631.         String pad = "";
  632.         StringBuffer sb = new StringBuffer();
  633.         int newindent = indent + indentFactor;
  634. int len = myArrayList.size();
  635. if (len == 0) {
  636. return "[]";
  637. }
  638.         for (i = 0; i < newindent; i += 1) {
  639.             pad += ' ';
  640.         }
  641.         sb.append("[n");
  642.         for (i = 0; i < len; i += 1) {
  643.             if (i > 0) {
  644.                 sb.append(",n");
  645.             }
  646.             sb.append(pad);
  647.             o = myArrayList.get(i);
  648.             if (o == null) {
  649.                 sb.append("null");
  650.             } else if (o instanceof String) {
  651.                 sb.append(JSONObject.quote((String) o));
  652.             } else if (o instanceof Number) {
  653.                 sb.append(JSONObject.numberToString((Number) o));
  654.             } else if (o instanceof JSONObject) {
  655.                 sb.append(((JSONObject)o).toString(indentFactor, newindent));
  656.             } else if (o instanceof JSONArray) {
  657.                 sb.append(((JSONArray)o).toString(indentFactor, newindent));
  658.             } else {
  659.                 sb.append(o.toString());
  660.             }
  661.         }
  662. sb.append('n');
  663.         for (i = 0; i < indent; i += 1) {
  664. sb.append(' ');
  665.         }
  666.         sb.append(']');
  667.         return sb.toString();
  668.     }
  669. }