org.json: HTTP

La classe HTTP fornisce metodi statici per convertire il testo dell'intestazione del browser Web in un JSONObject e viceversa.

I seguenti metodi sono trattati nell'esempio.

  • toJSONObject(String) - Converte un testo di intestazione in un oggetto JSONObject.

  • toString(JSONObject) - Converte un oggetto JSONObject in testo di intestazione.

Esempio

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));
   }
}

Produzione

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

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