org.json - CookieList

La classe CookieList fornisce metodi statici per convertire l'elenco dei cookie in JSONObject e viceversa. L'elenco dei cookie è una sequenza di coppie nome / valore.

I seguenti metodi sono trattati nell'esempio.

  • toJSONObject(String) - Converte il testo di un elenco di cookie in un oggetto JSONObject.

  • toString(JSONObject) - Converte un JSONObject nel testo dell'elenco dei cookie.

Esempio

import org.json.Cookie;
import org.json.CookieList;
import org.json.JSONObject;

public class JSONDemo {
   public static void main(String[] args) {
      String cookie = "username = Mark Den; expires = Thu, 15 Jun 2020 12:00:00 UTC; path = /";

      //Case 1: Converts Cookie String to JSONObject
      JSONObject cookieJSONObject = Cookie.toJSONObject(cookie);

      JSONObject cookielistJSONObject = new JSONObject();       
      cookielistJSONObject.put(cookieJSONObject.getString("name"), 
         cookieJSONObject.getString("value"));       

      String cookieList = CookieList.toString(cookielistJSONObject);        
      System.out.println(cookieList); 
      System.out.println(CookieList.toJSONObject(cookieList));
   }
}

Produzione

username=Mark Den
{"username":"Mark Den"}