org.json - Propiedad

La clase de propiedad proporciona métodos estáticos para convertir el texto de las propiedades en un JSONObject y viceversa.

Los siguientes métodos están cubiertos en el ejemplo.

  • toJSONObject(Properties) - Convierte los datos de una propiedad en JSONObject Object.

  • toProperties(JSONObject) - Convierte un JSONObject en un objeto de propiedades.

Ejemplo

import java.util.Properties;
import org.json.JSONObject;
import org.json.Property;

public class JSONDemo {
   public static void main(String[] args) {
      Properties properties = new Properties();
      properties.put("title", "This is a title text");
      properties.put("subtitle", "This is a subtitle text");

      System.out.println("Properties to JSON");
      JSONObject jsonObject = Property.toJSONObject(properties);
      System.out.println(jsonObject);

      System.out.println("JSON to properties");
      System.out.println(Property.toProperties(jsonObject));
   }
}

Salida

Properties to JSON
{"subtitle":"This is a subtitle text","title":"This is a title text"}
JSON to properties
{subtitle = This is a subtitle text, title = This is a title text}