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

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. public class Test {
  22.     public static void main(String args[]) {
  23.         System.out.println("working");
  24.         try {
  25.             JSONObject j = new JSONObject("{ei: {ea: '"\''},eo: {a: '"quoted"', b:"don't"}, ea: ["'", '"']}");
  26.             System.out.println(j.toString(2));
  27.             System.out.println(XML.toString(j));
  28.             System.out.println("");
  29.             j = new JSONObject(
  30.                 "/*comment*/{foo: [true, false,9876543210,    0.0, 1.00000001,  1.000000000001, 1.00000000000000001," +
  31.                 " .00000000000000001, 2.00, 0.1, 2e100, -32,[],{}, "string"], " +
  32.                 "  to   : null, op : 'Good'," +
  33.                 "ten:10} postfix comment");
  34.             j.put("String", "98.6");
  35.             j.put("JSONObject", new JSONObject());
  36.             j.put("JSONArray", new JSONArray());
  37.             j.put("int", 57);
  38.             j.put("double", 57.57E20);
  39.             j.put("true", true);
  40.             j.put("false", false);
  41.             j.put("bool", "true");
  42.             j.put("zero", -0.0);
  43.             JSONArray a = j.getJSONArray("foo");
  44.             a.put(666);
  45.             a.put(2001.99);
  46.             a.put("so "fine".");
  47.             a.put("so <fine>.");
  48.             a.put(true);
  49.             a.put(false);
  50.             a.put(new JSONArray());
  51.             a.put(new JSONObject());
  52.             System.out.println(j.toString(2));
  53.             System.out.println(XML.toString(j));
  54.             System.out.println("String: " + j.getDouble("String"));
  55.             System.out.println(" bool: " + j.getBoolean("bool"));
  56.             System.out.println("   to: " + j.getString("to"));
  57.             System.out.println(" true: " + j.getString("true"));
  58.             System.out.println("  foo: " + j.getJSONArray("foo"));
  59.             System.out.println("   op: " + j.getString("op"));
  60.             System.out.println("  ten: " + j.getInt("ten"));
  61.             System.out.println(" oops: " + j.optBoolean("oops"));
  62.             j = XML.toJSONObject("<xml one = 1 two=' 2 '><five></five>First u0009&lt;content&gt;<five></five> This is "content". <three>  3  </three>  <three>  III  </three>  <three>  T H R E E</three><for/></xml>");
  63.             System.out.println(j.toString(2));
  64.             System.out.println(XML.toString(j));
  65.             System.out.println("");
  66.             j = XML.toJSONObject("<mapping>   <class name = "Customer">      <field name = "ID" type = "string">         <bind-xml name="ID" node="attribute"/>      </field>      <field name = "FirstName" type = "FirstName"/>      <field name = "MI" type = "MI"/>      <field name = "LastName" type = "LastName"/>   </class>   <class name = "FirstName">      <field name = "text">         <bind-xml name = "text" node = "text"/>      </field>   </class>   <class name = "MI">      <field name = "text">         <bind-xml name = "text" node = "text"/>      </field>   </class>   <class name = "LastName">      <field name = "text">         <bind-xml name = "text" node = "text"/>      </field>   </class></mapping>");
  67.             System.out.println(j.toString(2));
  68.             System.out.println(XML.toString(j));
  69.             System.out.println("");
  70.             j = XML.toJSONObject("<?xml version="1.0" ?><Book Author="Anonymous"><Title>Sample Book</Title><Chapter id="1">This is chapter 1. It is not very long or interesting.</Chapter><Chapter id="2">This is chapter 2. Although it is longer than chapter 1, it is not any more interesting.</Chapter></Book>");
  71.             System.out.println(j.toString(2));
  72.             System.out.println(XML.toString(j));
  73.             System.out.println("");
  74.             j = XML.toJSONObject("<!DOCTYPE bCard 'http://www.cs.caltech.edu/~adam/schemas/bCard'><bCard><?xml default bCard        firstname = ''        lastname  = '' company   = '' email = '' homepage  = ''?><bCard        firstname = 'Rohit'        lastname  = 'Khare'        company   = 'MCI'        email     = 'khare@mci.net'        homepage  = 'http://pest.w3.org/'/><bCard        firstname = 'Adam'        lastname  = 'Rifkin'        company   = 'Caltech Infospheres Project'        email     = 'adam@cs.caltech.edu'        homepage  = 'http://www.cs.caltech.edu/~adam/'/></bCard>");
  75.             System.out.println(j.toString(2));
  76.             System.out.println(XML.toString(j));
  77.             System.out.println("");
  78.             j = XML.toJSONObject("<?xml version="1.0"?><customer>    <firstName>        <text>Fred</text>    </firstName>    <ID>fbs0001</ID>    <lastName> <text>Scerbo</text>    </lastName>    <MI>        <text>B</text>    </MI></customer>");
  79.             System.out.println(j.toString(2));
  80.             System.out.println(XML.toString(j));
  81.             System.out.println("");
  82.             j = XML.toJSONObject("<!ENTITY tp-address PUBLIC '-//ABC University::Special Collections Library//TEXT (titlepage: name and address)//EN' 'tpspcoll.sgm'><list type='simple'><head>Repository Address </head><item>Special Collections Library</item><item>ABC University</item><item>Main Library, 40 Circle Drive</item><item>Ourtown, Pennsylvania</item><item>17654 USA</item></list>");
  83.             System.out.println(j.toString());
  84.             System.out.println(XML.toString(j));
  85.             System.out.println("");
  86.             j = XML.toJSONObject("<test intertag status=ok><empty/>deluxe<blip sweet=true>&amp;toot&toot;</blip><x>eks</x><w>bonus</w><w>bonus2</w></test>");
  87.             System.out.println(j.toString(2));
  88.             System.out.println(XML.toString(j));
  89.             System.out.println("");
  90.             j = HTTP.toJSONObject("GET / HTTP/1.0nAccept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, */*nAccept-Language: en-usnUser-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98; Win 9x 4.90; T312461; Q312461)nHost: www.nokko.comnConnection: keep-alivenAccept-encoding: gzip, deflaten");
  91.             System.out.println(j.toString(2));
  92.             System.out.println(HTTP.toString(j));
  93.             System.out.println("");
  94.             j = HTTP.toJSONObject("HTTP/1.1 200 Oki DokinDate: Sun, 26 May 2002 17:38:52 GMTnServer: Apache/1.3.23 (Unix) mod_perl/1.26nKeep-Alive: timeout=15, max=100nConnection: Keep-AlivenTransfer-Encoding: chunkednContent-Type: text/htmln");
  95.             System.out.println(j.toString(2));
  96.             System.out.println(HTTP.toString(j));
  97.             System.out.println("");
  98.             j = new JSONObject("{nix: null, nux: false, null: 'null', 'Request-URI': '/', Method: 'GET', 'HTTP-Version': 'HTTP/1.0'}");
  99.             System.out.println(j.toString(2));
  100.             System.out.println("isNull: " + j.isNull("nix"));
  101.             System.out.println("   has: " + j.has("nix"));
  102.             System.out.println(XML.toString(j));
  103.             System.out.println(HTTP.toString(j));
  104.             System.out.println("");
  105.             j = XML.toJSONObject("<?xml version='1.0' encoding='UTF-8'?>"+"nn"+"<SOAP-ENV:Envelope"+
  106.               " xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/""+
  107.               " xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance""+
  108.               " xmlns:xsd="http://www.w3.org/1999/XMLSchema">"+
  109.               "<SOAP-ENV:Body><ns1:doGoogleSearch"+
  110.               " xmlns:ns1="urn:GoogleSearch""+
  111.               " SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">"+
  112.               "<key xsi:type="xsd:string">GOOGLEKEY</key> <q"+
  113.               " xsi:type="xsd:string">'+search+'</q> <start"+
  114.               " xsi:type="xsd:int">0</start> <maxResults"+
  115.               " xsi:type="xsd:int">10</maxResults> <filter"+
  116.               " xsi:type="xsd:boolean">true</filter> <restrict"+
  117.               " xsi:type="xsd:string"></restrict> <safeSearch"+
  118.               " xsi:type="xsd:boolean">false</safeSearch> <lr"+
  119.               " xsi:type="xsd:string"></lr> <ie"+
  120.               " xsi:type="xsd:string">latin1</ie> <oe"+
  121.               " xsi:type="xsd:string">latin1</oe>"+
  122.               "</ns1:doGoogleSearch>"+
  123.               "</SOAP-ENV:Body></SOAP-ENV:Envelope>");
  124.             System.out.println(j.toString(2));
  125.             System.out.println(XML.toString(j));
  126.             System.out.println("");
  127.             j = new JSONObject("{Envelope: {Body: {"ns1:doGoogleSearch": {oe: "latin1", filter: true, q: "'+search+'", key: "GOOGLEKEY", maxResults: 10, "SOAP-ENV:encodingStyle": "http://schemas.xmlsoap.org/soap/encoding/", start: 0, ie: "latin1", safeSearch:false, "xmlns:ns1": "urn:GoogleSearch"}}}}");
  128.             System.out.println(j.toString(2));
  129.             System.out.println(XML.toString(j));
  130.             System.out.println("");
  131.             j = CookieList.toJSONObject("  f%oo = b+l=ah  ; o;n%40e = t.wo ");
  132.             System.out.println(j.toString(2));
  133.             System.out.println(CookieList.toString(j));
  134.             System.out.println("");
  135.             j = Cookie.toJSONObject("f%oo=blah; secure ;expires = April 24, 2002");
  136.             System.out.println(j.toString(2));
  137.             System.out.println(Cookie.toString(j));
  138.             System.out.println("");
  139.             j = new JSONObject("{script: 'It is not allowed to send a close script tag in a string<script>because it confuses browsers</script>so we insert a backslash before the /'}");
  140.             System.out.println(j.toString());
  141.             System.out.println("");
  142.             JSONTokener jt = new JSONTokener("{op:'test', to:'session', pre:1}{op:'test', to:'session', pre:2}");
  143.             j = new JSONObject(jt);
  144.             System.out.println(j.toString());
  145.             System.out.println("pre: " + j.optInt("pre"));
  146.             int i = jt.skipTo('{');
  147.             System.out.println(i);
  148.             j = new JSONObject(jt);
  149.             System.out.println(j.toString());
  150.             System.out.println("");
  151.             a = CDL.toJSONArray("No quotes, 'Single Quotes', "Double Quotes"n1,'2',"3"n,'It is "good,"', "It works."nn");
  152.             System.out.println(CDL.toString(a));
  153.             System.out.println("");
  154.             System.out.println(a.toString(4));
  155.             System.out.println("");
  156.              
  157.             a = new JSONArray(" ["<escape>", next is an implied null , , ok] ");
  158.             System.out.println(a.toString());
  159.             System.out.println("");
  160.             System.out.println(XML.toString(a));
  161.             System.out.println("");
  162. j = new JSONObject("{'+':+666 ;pluses=+++;empty = '' , 'double':0.666,true: TRUE, false: FALSE, array = [!,@;*]; string=>  o. k. ; # commentr oct=0666; hex=0x666; dec=666; noo=0999; noh=0x0x}");
  163.             System.out.println(j.toString(4));
  164.             System.out.println("");
  165. if (j.getBoolean("true") && !j.getBoolean("false")) {
  166. System.out.println("It's all good");
  167. }
  168. } catch (Exception e) {
  169.             System.out.println(e.toString());
  170.         }
  171.     }
  172. }