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

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. /**
  23.  * This provides static methods to convert comma delimited text into a
  24.  * JSONArray, and to covert a JSONArray into comma delimited text. Comma
  25.  * delimited text is a very popular format for data interchange. It is
  26.  * understood by most database, spreadsheet, and organizer programs.
  27.  * <p>
  28.  * Each row of text represents a row in a table or a data record. Each row
  29.  * ends with a NEWLINE character. Each row contains one or more values.
  30.  * Values are separated by commas. A value can contain any character except
  31.  * for comma, unless is is wrapped in single quotes or double quotes.
  32.  * <p>
  33.  * The first row usually contains the names of the columns.
  34.  * <p>
  35.  * A comma delimited list can be converted into a JSONArray of JSONObjects.
  36.  * The names for the elements in the JSONObjects can be taken from the names
  37.  * in the first row.
  38.  */
  39. public class CDL {
  40.     private CDL() {}
  41.     /**
  42.      * Get the next value. The value can be wrapped in quotes. The value can
  43.      * be empty.
  44.      * @param x A JSONTokener of the source text.
  45.      * @return The value string, or null if empty.
  46.      * @throws java.text.ParseException if the quoted string is badly formed.
  47.      */
  48.     private static String getValue(JSONTokener x)
  49.             throws java.text.ParseException {
  50.         char c;
  51.         do {
  52.             c = x.next();
  53.         } while (c <= ' ' && c != 0);
  54.         switch (c) {
  55.         case 0:
  56.             return null;
  57.         case '"':
  58.         case ''':
  59.             return x.nextString(c);
  60.         case ',':
  61.             x.back();
  62.             return "";
  63.         default:
  64.             x.back();
  65.             return x.nextTo(',');
  66.         }
  67.     }
  68.     /**
  69.      * Produce a JSONArray of strings from a row of comma delimited values.
  70.      * @param x A JSONTokener of the source text.
  71.      * @return A JSONArray of strings.
  72.      * @throws ParseException
  73.      */
  74.     public static JSONArray rowToJSONArray(JSONTokener x)
  75.             throws ParseException {
  76.         JSONArray ja = new JSONArray();
  77.         while (true) {
  78.             String value = getValue(x);
  79.             if (value == null) {
  80.                 return null;
  81.             }
  82.             ja.put(value);
  83.             while (true) {
  84.                 char c = x.next();
  85.                 if (c == ',') {
  86.                     break;
  87.                 }
  88.                 if (c != ' ') {
  89.                     if (c == 'n' || c == 'r' || c == 0) {
  90.                         return ja;
  91.                     }
  92.                     throw x.syntaxError("Bad character '" + c + "' (" +
  93.                             (int)c + ").");
  94.                 }
  95.             }
  96.         }
  97.     }
  98.     /**
  99.      * Produce a JSONObject from a row of comma delimited text, using a
  100.      * parallel JSONArray of strings to provides the names of the elements.
  101.      * @param names A JSONArray of names. This is commonly obtained from the
  102.      *  first row of a comma delimited text file using the rowToJSONArray
  103.      *  method.
  104.      * @param x A JSONTokener of the source text.
  105.      * @return A JSONObject combining the names and values.
  106.      * @throws ParseException
  107.      */
  108.     public static JSONObject rowToJSONObject(JSONArray names, JSONTokener x)
  109.             throws ParseException {
  110.         JSONArray ja = rowToJSONArray(x);
  111.         return ja != null ? ja.toJSONObject(names) :  null;
  112.     }
  113.     /**
  114.      * Produce a JSONArray of JSONObjects from a comma delimited text string,
  115.      * using the first row as a source of names.
  116.      * @param string The comma delimited text.
  117.      * @return A JSONArray of JSONObjects.
  118.      * @throws ParseException
  119.      */
  120.     public static JSONArray toJSONArray(String string) throws ParseException {
  121.         return toJSONArray(new JSONTokener(string));
  122.     }
  123.     /**
  124.      * Produce a JSONArray of JSONObjects from a comma delimited text string,
  125.      * using the first row as a source of names.
  126.      * @param x The JSONTokener containing the comma delimited text.
  127.      * @return A JSONArray of JSONObjects.
  128.      * @throws ParseException
  129.      */
  130.     public static JSONArray toJSONArray(JSONTokener x) throws ParseException {
  131.         return toJSONArray(rowToJSONArray(x), x);
  132.     }
  133.     /**
  134.      * Produce a JSONArray of JSONObjects from a comma delimited text string
  135.      * using a supplied JSONArray as the source of element names.
  136.      * @param names A JSONArray of strings.
  137.      * @param string The comma delimited text.
  138.      * @return A JSONArray of JSONObjects.
  139.      * @throws ParseException
  140.      */
  141.     public static JSONArray toJSONArray(JSONArray names, String string)
  142.             throws ParseException {
  143.         return toJSONArray(names, new JSONTokener(string));
  144.     }
  145.     /**
  146.      * Produce a JSONArray of JSONObjects from a comma delimited text string
  147.      * using a supplied JSONArray as the source of element names.
  148.      * @param names A JSONArray of strings.
  149.      * @param x A JSONTokener of the source text.
  150.      * @return A JSONArray of JSONObjects.
  151.      * @throws java.text.ParseException
  152.      */
  153.     public static JSONArray toJSONArray(JSONArray names, JSONTokener x)
  154.             throws java.text.ParseException {
  155.         if (names == null || names.length() == 0) {
  156.             return null;
  157.         }
  158.         JSONArray ja = new JSONArray();
  159.         while (true) {
  160.             JSONObject jo = rowToJSONObject(names, x);
  161.             if (jo == null) {
  162.                 break;
  163.             }
  164.             ja.put(jo);
  165.         }
  166.         if (ja.length() == 0) {
  167.             return null;
  168.         }
  169.         return ja;
  170.     }
  171.     /**
  172.      * Produce a comma delimited text row from a JSONArray. Values containing
  173.      * the comma character will be quoted.
  174.      * @param ja A JSONArray of strings.
  175.      * @return A string ending in NEWLINE.
  176.      */
  177.     public static String rowToString(JSONArray ja) {
  178.         StringBuffer sb = new StringBuffer();
  179.         for (int i = 0; i < ja.length(); i += 1) {
  180.             if (i > 0) {
  181.                 sb.append(',');
  182.             }
  183.             Object o = ja.opt(i);
  184.             if (o != null) {
  185.                 String s = o.toString();
  186.                 if (s.indexOf(',') >= 0) {
  187.                     if (s.indexOf('"') >= 0) {
  188.                         sb.append(''');
  189.                         sb.append(s);
  190.                         sb.append(''');
  191.                     } else {
  192.                         sb.append('"');
  193.                         sb.append(s);
  194.                         sb.append('"');
  195.                     }
  196.                 } else {
  197.                     sb.append(s);
  198.                 }
  199.             }
  200.         }
  201.         sb.append('n');
  202.         return sb.toString();
  203.     }
  204.     /**
  205.      * Produce a comma delimited text from a JSONArray of JSONObjects. The
  206.      * first row will be a list of names obtained by inspecting the first
  207.      * JSONObject.
  208.      * @param ja A JSONArray of JSONObjects.
  209.      * @return A comma delimited text.
  210.      */
  211.     public static String toString(JSONArray ja) {
  212.         JSONObject jo = ja.optJSONObject(0);
  213.         if (jo != null) {
  214.             JSONArray names = jo.names();
  215.             if (names != null) {
  216.                 return rowToString(names) + toString(names, ja);
  217.             }
  218.         }
  219.         return null;
  220.     }
  221.     /**
  222.      * Produce a comma delimited text from a JSONArray of JSONObjects using
  223.      * a provided list of names. The list of names is not included in the
  224.      * output.
  225.      * @param names A JSONArray of strings.
  226.      * @param ja A JSONArray of JSONObjects.
  227.      * @return A comma delimited text.
  228.      */
  229.     public static String toString(JSONArray names, JSONArray ja) {
  230.         if (names == null || names.length() == 0) {
  231.             return null;
  232.         }
  233.         StringBuffer sb = new StringBuffer();
  234.         for (int i = 0; i < ja.length(); i += 1) {
  235.             JSONObject jo = ja.optJSONObject(i);
  236.             if (jo != null) {
  237.                 sb.append(rowToString(jo.toJSONArray(names)));
  238.             }
  239.         }
  240.         return sb.toString();
  241.     }
  242. }