Class JSON

java.lang.Object
com.smartgwt.client.util.JSON

public class JSON extends Object
Utilities for working with JSON data.
  • Constructor Details

    • JSON

      public JSON()
  • Method Details

    • decodeSafe

      public static Map decodeSafe(String jsonString, Function jsonReviver)
      Decodes strict JSON using native browser JSON parsing APIs. This API will not work with pseudo-JSON that must be parsed as JavaScript (such as that produced by encoding with JSONDateFormat logicalDateConstructor).

      This API is called "safe" because using a JavaScript eval() to decode JSON is potentially unsafe if the data being decoded is untrusted. For example, if users are able to save data as JSON for other uses to see (such as sharing ListGrid.viewState) and there is no validation of the saved data to ensure safety and some users are untrusted, then saved JSON could be used similarly to an XSS attack, allowing one user to execute JavaScript code in another user's browser.

      Note that, because JSON has no way of representing dates, serializing a structure that contains dates and then deserializing with decodeSafe() necessarily results in any Dates becoming strings. Use JSONDateFormat "logicalDateString" in combination with decodeSafeWithDates() to round-trip date, time and datetime values accurately.

      Parameters:
      jsonString - JSON data to be de-serialized
      jsonReviver - optional setting
      Returns:
      object derived from JSON String
    • decodeSafeWithDates

      public static void decodeSafeWithDates(String jsonString)
      Uses decodeSafe() to decode strict JSON using native browser JSON parsing APIs, with settings to correctly process formatted date values created with JSONDateFormat logicalDateConstructor.
      Parameters:
      jsonString - JSON data to be de-serialized
    • encode

      public static String encode(JavaScriptObject object)
      Serialize an object as a JSON string.

      Automatically handles circular references - see circularReferenceMode.

      Note that using the String produced by this API with JSON.decode will not successfully preserve dates. Use JSONEncoder.setDateFormat "dateConstructor" to have dates round-trip properly.

      Because GWT does not support Java reflection, JSON encoding cannot discover the properties of an arbitrary Java POJO. The following objects are supported:

      • any primitive type (String, Date, Number, Boolean)
      • any Map or Collection in any level of nesting
      • DataClass (Record's superclass) and RecordList
      • any widget (see +link{JSONEncoder.serializeInstances})
      • JavaScriptObject
      • an Array containing any of the above
      Parameters:
      object - object to serialize
      Returns:
      object encoded as a JSON String
    • encode

      public static String encode(JavaScriptObject object, JSONEncoder settings)
      Serialize an object as a JSON string.

      Automatically handles circular references - see circularReferenceMode.

      Note that using the String produced by this API with JSON.decode will not successfully preserve dates. Use JSONEncoder.setDateFormat "dateConstructor" to have dates round-trip properly.

      Because GWT does not support Java reflection, JSON encoding cannot discover the properties of an arbitrary Java POJO. The following objects are supported:

      • any primitive type (String, Date, Number, Boolean)
      • any Map or Collection in any level of nesting
      • DataClass (Record's superclass) and RecordList
      • any widget (see +link{JSONEncoder.serializeInstances})
      • JavaScriptObject
      • an Array containing any of the above
      Parameters:
      object - object to serialize
      settings - optional settings for encoding
      Returns:
      object encoded as a JSON String
    • decode

      public static JavaScriptObject decode(String jsonString)
      De-serialize an object from JSON. Currently, this is simply a JavaScript eval() and should be used for trusted data only.
      Parameters:
      jsonString - JSON data to be de-serialized
      Returns:
      object derived from JSON String