org.json - HTTP



HTTP 类提供静态方法,将 Web 浏览器的头文本转换为一个 JSONObject,反之亦然。

本示例中介绍了以下方法。

  • toJSONObject(String) − 将一个标头文本转换成 JSONObject 对象。

  • toString(JSONObject) − 将一个 JSONObject 转换成标头文本。

示例

import org.json.HTTP;
import org.json.JSONObject;

public class JSONDemo {
   public static void main(String[] args) { 
      JSONObject jsonObject = new JSONObject();
      jsonObject.put("Method", "POST");
      jsonObject.put("Request-URI", "https://tutorialspoint.com/");
      jsonObject.put("HTTP-Version", "HTTP/1.1");
        
      //Case 1: Converts JSONObject of Header to String
      String headerText = HTTP.toString(jsonObject);
      System.out.println(headerText); 
        
      headerText = "POST \"https://tutorialspoint.com/\" HTTP/1.1";
      //Case 2: Converts Header String to JSONObject
      System.out.println(HTTP.toJSONObject(headerText));
   }
}

输出

POST "https://tutorialspoint.com/" HTTP/1.1

{"Request-URI":"https://tutorialspoint.com/","Method":"POST","HTTP-Version":"HTTP/1.1"}
广告