Activity › Forums › Salesforce® Discussions › Deserialize in Salesforce?
-
Deserialize in Salesforce?
Posted by Marziya on April 16, 2020 at 1:55 PMWhat is Deserialize in Salesforce?
Manish replied 6 years, 1 month ago 4 Members · 3 Replies -
3 Replies
-
JSON is a format that encodes objects in a string. Serialization means to convert an object into that string, and deserialization is its inverse operation.
When transmitting data or storing them in a file, the data are required to be byte strings, but complex objects are seldom in this format. Serialization can convert these complex objects into byte strings for such use. After the byte strings are transmitted, the receiver will have to recover the original object from the byte string. This is known as deserialization. - [adinserter block='9']
-
JSON is a format that encodes objects in a string. Serialization means to convert an object into that string, and deserialization is its inverse operation.
-
Deserializes the specified JSON string into an Apex object of the specified type.
Log In to reply.