📜  org.json-HTTP

📅  最后修改于: 2020-11-12 05:08:32             🧑  作者: Mango


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", "http://www.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 \"http://www.tutorialspoint.com/\" HTTP/1.1";
      //Case 2: Converts Header String to JSONObject
      System.out.println(HTTP.toJSONObject(headerText));
   }
}

输出

POST "http://www.tutorialspoint.com/" HTTP/1.1

{"Request-URI":"http://www.tutorialspoint.com/","Method":"POST","HTTP-Version":"HTTP/1.1"}