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

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