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

Ajax

开发平台:

Java

  1. /*
  2. Copyright (c) 2005 JSON.org
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The Software shall be used for Good, not Evil.
  10. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  11. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  12. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  13. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  14. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  15. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  16. SOFTWARE.
  17. */
  18. var JSON = {
  19.     org: 'http://www.JSON.org',
  20.     copyright: '(c)2005 JSON.org',
  21.     license: 'http://www.crockford.com/JSON/license.html',
  22.     stringify: function stringify(arg) {
  23.         var c, i, l, s = '', v;
  24.         switch (typeof arg) {
  25.         case 'object':
  26.             if (arg) {
  27.                 if (arg.constructor == Array) {
  28.                     for (i = 0; i < arg.length; ++i) {
  29.                         v = this.stringify(arg[i]);
  30.                         if (s) {
  31.                             s += ',';
  32.                         }
  33.                         s += v;
  34.                     }
  35.                     return '[' + s + ']';
  36.                 } else if (typeof arg.toString != 'undefined') {
  37.                     for (i in arg) {
  38.                         v = arg[i];
  39.                         if (typeof v != 'undefined' && typeof v != 'function') {
  40.                             v = this.stringify(v);
  41.                             if (s) {
  42.                                 s += ',';
  43.                             }
  44.                             s += this.stringify(i) + ':' + v;
  45.                         }
  46.                     }
  47.                     return '{' + s + '}';
  48.                 }
  49.             }
  50.             return 'null';
  51.         case 'number':
  52.             return isFinite(arg) ? String(arg) : 'null';
  53.         case 'string':
  54.             l = arg.length;
  55.             s = '"';
  56.             for (i = 0; i < l; i += 1) {
  57.                 c = arg.charAt(i);
  58.                 if (c >= ' ') {
  59.                     if (c == '\' || c == '"') {
  60.                         s += '\';
  61.                     }
  62.                     s += c;
  63.                 } else {
  64.                     switch (c) {
  65.                         case 'b':
  66.                             s += '\b';
  67.                             break;
  68.                         case 'f':
  69.                             s += '\f';
  70.                             break;
  71.                         case 'n':
  72.                             s += '\n';
  73.                             break;
  74.                         case 'r':
  75.                             s += '\r';
  76.                             break;
  77.                         case 't':
  78.                             s += '\t';
  79.                             break;
  80.                         default:
  81.                             c = c.charCodeAt();
  82.                             s += '\u00' + Math.floor(c / 16).toString(16) +
  83.                                 (c % 16).toString(16);
  84.                     }
  85.                 }
  86.             }
  87.             return s + '"';
  88.         case 'boolean':
  89.             return String(arg);
  90.         default:
  91.             return 'null';
  92.         }
  93.     },
  94.     parse: function (text) {
  95.         var at = 0;
  96.         var ch = ' ';
  97.         function error(m) {
  98.             throw {
  99.                 name: 'JSONError',
  100.                 message: m,
  101.                 at: at - 1,
  102.                 text: text
  103.             };
  104.         }
  105.         function next() {
  106.             ch = text.charAt(at);
  107.             at += 1;
  108.             return ch;
  109.         }
  110.         function white() {
  111.             while (ch) {
  112.                 if (ch <= ' ') {
  113.                     next();
  114.                 } else if (ch == '/') {
  115.                     switch (next()) {
  116.                         case '/':
  117.                             while (next() && ch != 'n' && ch != 'r') {}
  118.                             break;
  119.                         case '*':
  120.                             next();
  121.                             for (;;) {
  122.                                 if (ch) {
  123.                                     if (ch == '*') {
  124.                                         if (next() == '/') {
  125.                                             next();
  126.                                             break;
  127.                                         }
  128.                                     } else {
  129.                                         next();
  130.                                     }
  131.                                 } else {
  132.                                     error("Unterminated comment");
  133.                                 }
  134.                             }
  135.                             break;
  136.                         default:
  137.                             error("Syntax error");
  138.                     }
  139.                 } else {
  140.                     break;
  141.                 }
  142.             }
  143.         }
  144.         function string() {
  145.             var i, s = '', t, u;
  146.             if (ch == '"') {
  147. outer:          while (next()) {
  148.                     if (ch == '"') {
  149.                         next();
  150.                         return s;
  151.                     } else if (ch == '\') {
  152.                         switch (next()) {
  153.                         case 'b':
  154.                             s += 'b';
  155.                             break;
  156.                         case 'f':
  157.                             s += 'f';
  158.                             break;
  159.                         case 'n':
  160.                             s += 'n';
  161.                             break;
  162.                         case 'r':
  163.                             s += 'r';
  164.                             break;
  165.                         case 't':
  166.                             s += 't';
  167.                             break;
  168.                         case 'u':
  169.                             u = 0;
  170.                             for (i = 0; i < 4; i += 1) {
  171.                                 t = parseInt(next(), 16);
  172.                                 if (!isFinite(t)) {
  173.                                     break outer;
  174.                                 }
  175.                                 u = u * 16 + t;
  176.                             }
  177.                             s += String.fromCharCode(u);
  178.                             break;
  179.                         default:
  180.                             s += ch;
  181.                         }
  182.                     } else {
  183.                         s += ch;
  184.                     }
  185.                 }
  186.             }
  187.             error("Bad string");
  188.         }
  189.         function array() {
  190.             var a = [];
  191.             if (ch == '[') {
  192.                 next();
  193.                 white();
  194.                 if (ch == ']') {
  195.                     next();
  196.                     return a;
  197.                 }
  198.                 while (ch) {
  199.                     a.push(value());
  200.                     white();
  201.                     if (ch == ']') {
  202.                         next();
  203.                         return a;
  204.                     } else if (ch != ',') {
  205.                         break;
  206.                     }
  207.                     next();
  208.                     white();
  209.                 }
  210.             }
  211.             error("Bad array");
  212.         }
  213.         function object() {
  214.             var k, o = {};
  215.             if (ch == '{') {
  216.                 next();
  217.                 white();
  218.                 if (ch == '}') {
  219.                     next();
  220.                     return o;
  221.                 }
  222.                 while (ch) {
  223.                     k = string();
  224.                     white();
  225.                     if (ch != ':') {
  226.                         break;
  227.                     }
  228.                     next();
  229.                     o[k] = value();
  230.                     white();
  231.                     if (ch == '}') {
  232.                         next();
  233.                         return o;
  234.                     } else if (ch != ',') {
  235.                         break;
  236.                     }
  237.                     next();
  238.                     white();
  239.                 }
  240.             }
  241.             error("Bad object");
  242.         }
  243.         function number() {
  244.             var n = '', v;
  245.             if (ch == '-') {
  246.                 n = '-';
  247.                 next();
  248.             }
  249.             while (ch >= '0' && ch <= '9') {
  250.                 n += ch;
  251.                 next();
  252.             }
  253.             if (ch == '.') {
  254.                 n += '.';
  255.                 while (next() && ch >= '0' && ch <= '9') {
  256.                     n += ch;
  257.                 }
  258.             }
  259.             v = +n;
  260.             if (!isFinite(v)) {
  261.                 error("Bad number");
  262.             } else {
  263.                 return v;
  264.             }
  265.         }
  266.         function word() {
  267.             switch (ch) {
  268.                 case 't':
  269.                     if (next() == 'r' && next() == 'u' && next() == 'e') {
  270.                         next();
  271.                         return true;
  272.                     }
  273.                     break;
  274.                 case 'f':
  275.                     if (next() == 'a' && next() == 'l' && next() == 's' &&
  276.                             next() == 'e') {
  277.                         next();
  278.                         return false;
  279.                     }
  280.                     break;
  281.                 case 'n':
  282.                     if (next() == 'u' && next() == 'l' && next() == 'l') {
  283.                         next();
  284.                         return null;
  285.                     }
  286.                     break;
  287.             }
  288.             error("Syntax error");
  289.         }
  290.         function value() {
  291.             white();
  292.             switch (ch) {
  293.                 case '{':
  294.                     return object();
  295.                 case '[':
  296.                     return array();
  297.                 case '"':
  298.                     return string();
  299.                 case '-':
  300.                     return number();
  301.                 default:
  302.                     return ch >= '0' && ch <= '9' ? number() : word();
  303.             }
  304.         }
  305.         return value();
  306.     }
  307. };