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

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.util.Iterator;
  22. import java.util.NoSuchElementException;
  23. import java.text.ParseException;
  24. /**
  25.  * Convert an HTTP header to a JSONObject and back.
  26.  * @author JSON.org
  27.  * @version 0.1
  28.  */
  29. public class HTTP {
  30.     private HTTP() {}
  31.     /** Carriage return/line feed. */
  32.     public static final String CRLF = "rn";
  33.     /**
  34.      * Convert an HTTP header string into a JSONObject. It can be a request
  35.      * header or a response header. A request header will contain
  36.      * <pre>{
  37.      *    Method: "POST" (for example),
  38.      *    "Request-URI": "/" (for example),
  39.      *    "HTTP-Version": "HTTP/1.1" (for example)
  40.      * }</pre>
  41.      * A response header will contain
  42.      * <pre>{
  43.      *    "HTTP-Version": "HTTP/1.1" (for example),
  44.      *    "Status-Code": "200" (for example),
  45.      *    "Reason-Phrase": "OK" (for example)
  46.      * }</pre>
  47.      * In addition, the other parameters in the header will be captured, using
  48.      * the HTTP field names as JSON names, so that <pre>
  49.      *    Date: Sun, 26 May 2002 18:06:04 GMT
  50.      *    Cookie: Q=q2=PPEAsg--; B=677gi6ouf29bn&b=2&f=s
  51.      *    Cache-Control: no-cache</pre>
  52.      * become
  53.      * <pre>{...
  54.      *    Date: "Sun, 26 May 2002 18:06:04 GMT",
  55.      *    Cookie: "Q=q2=PPEAsg--; B=677gi6ouf29bn&b=2&f=s",
  56.      *    "Cache-Control": "no-cache",
  57.      * ...}</pre>
  58.      * It does no further checking or conversion. It does not parse dates.
  59.      * It does not do '%' transforms on URLs.
  60.      * @throws ParseException
  61.      * @param string An HTTP header string.
  62.      * @return A JSONObject containing the elements and attributes
  63.      * of the XML string.
  64.      */
  65.     public static JSONObject toJSONObject(String string) throws ParseException {
  66.         JSONObject     o = new JSONObject();
  67.         HTTPTokener    x = new HTTPTokener(string);
  68.         String         t;
  69.         t = x.nextToken();
  70.         if (t.toUpperCase().startsWith("HTTP")) {
  71. // Response
  72.             o.put("HTTP-Version", t);
  73.             o.put("Status-Code", x.nextToken());
  74.             o.put("Reason-Phrase", x.nextTo(''));
  75.             x.next();
  76.         } else {
  77. // Request
  78.             o.put("Method", t);
  79.             o.put("Request-URI", x.nextToken());
  80.             o.put("HTTP-Version", x.nextToken());
  81.         }
  82. // Fields
  83.         while (x.more()) {
  84.             String name = x.nextTo(':');
  85.             x.next(':');
  86.             o.put(name, x.nextTo(''));
  87.             x.next();
  88.         }
  89.         return o;
  90.     }
  91.     /**
  92.      * Convert a JSONObject into an HTTP header. A request header must contain
  93.      * <pre>{
  94.      *    Method: "POST" (for example),
  95.      *    "Request-URI": "/" (for example),
  96.      *    "HTTP-Version": "HTTP/1.1" (for example)
  97.      * }</pre>
  98.      * A response header must contain
  99.      * <pre>{
  100.      *    "HTTP-Version": "HTTP/1.1" (for example),
  101.      *    "Status-Code": "200" (for example),
  102.      *    "Reason-Phrase": "OK" (for example)
  103.      * }</pre>
  104.      * Any other members of the JSONObject will be output as HTTP fields.
  105.      * The result will end with two CRLF pairs.
  106.      * @throws NoSuchElementException if the object does not contain enough
  107.      *  information.
  108.      * @param o A JSONObject
  109.      * @return An HTTP header string.
  110.      */
  111.     public static String toString(JSONObject o) throws NoSuchElementException {
  112.         Iterator     keys = o.keys();
  113.         String       s;
  114.         StringBuffer sb = new StringBuffer();
  115.         if (o.has("Status-Code") && o.has("Reason-Phrase")) {
  116.             sb.append(o.getString("HTTP-Version"));
  117.             sb.append(' ');
  118.             sb.append(o.getString("Status-Code"));
  119.             sb.append(' ');
  120.             sb.append(o.getString("Reason-Phrase"));
  121.         } else if (o.has("Method") && o.has("Request-URI")) {
  122.             sb.append(o.getString("Method"));
  123.             sb.append(' ');
  124.             sb.append('"');
  125.             sb.append(o.getString("Request-URI"));
  126.             sb.append('"');
  127.             sb.append(' ');
  128.             sb.append(o.getString("HTTP-Version"));
  129.         } else {
  130.             throw new NoSuchElementException(
  131.                                     "Not enough material for an HTTP header.");
  132.         }
  133.         sb.append(CRLF);
  134.         while (keys.hasNext()) {
  135.             s = keys.next().toString();
  136.             if (!s.equals("HTTP-Version")      && !s.equals("Status-Code") &&
  137.                     !s.equals("Reason-Phrase") && !s.equals("Method") &&
  138.                     !s.equals("Request-URI")   && !o.isNull(s)) {
  139.                 sb.append(s);
  140.                 sb.append(": ");
  141.                 sb.append(o.getString(s));
  142.                 sb.append(CRLF);
  143.             }
  144.         }
  145.         sb.append(CRLF);
  146.         return sb.toString();
  147.     }
  148. }