|
|||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Objectcom.qq.connect.utils.json.HTTP
public class HTTP
Convert an HTTP header to a JSONObject and back.
字段摘要 | |
---|---|
static java.lang.String |
CRLF
Carriage return/line feed. |
构造方法摘要 | |
---|---|
HTTP()
|
方法摘要 | |
---|---|
static JSONObject |
toJSONObject(java.lang.String string)
Convert an HTTP header string into a JSONObject. |
static java.lang.String |
toString(JSONObject o)
Convert a JSONObject into an HTTP header. |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
字段详细信息 |
---|
public static final java.lang.String CRLF
构造方法详细信息 |
---|
public HTTP()
方法详细信息 |
---|
public static JSONObject toJSONObject(java.lang.String string) throws JSONException
{ Method: "POST" (for example), "Request-URI": "/" (for example), "HTTP-Version": "HTTP/1.1" (for example) }A response header will contain
{ "HTTP-Version": "HTTP/1.1" (for example), "Status-Code": "200" (for example), "Reason-Phrase": "OK" (for example) }In addition, the other parameters in the header will be captured, using the HTTP field names as JSON names, so that
Date: Sun, 26 May 2002 18:06:04 GMT Cookie: Q=q2=PPEAsg--; B=677gi6ouf29bn&b=2&f=s Cache-Control: no-cachebecome
{... Date: "Sun, 26 May 2002 18:06:04 GMT", Cookie: "Q=q2=PPEAsg--; B=677gi6ouf29bn&b=2&f=s", "Cache-Control": "no-cache", ...}It does no further checking or conversion. It does not parse dates. It does not do '%' transforms on URLs.
string
- An HTTP header string.
JSONException
public static java.lang.String toString(JSONObject o) throws JSONException
{ Method: "POST" (for example), "Request-URI": "/" (for example), "HTTP-Version": "HTTP/1.1" (for example) }A response header must contain
{ "HTTP-Version": "HTTP/1.1" (for example), "Status-Code": "200" (for example), "Reason-Phrase": "OK" (for example) }Any other members of the JSONObject will be output as HTTP fields. The result will end with two CRLF pairs.
o
- A JSONObject
JSONException
- if the object does not contain enough
information.
|
|||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |