About 9,040,000 results
Open links in new tab
  1. What is deserialize and serialize in JSON? - Stack Overflow

    Jul 23, 2010 · Serialize and Deserialize In the context of data storage, serialization (or serialisation) is the process of translating data structures or object state into a format that can …

  2. language agnostic - What is Serialization? - Stack Overflow

    Mar 11, 2009 · I am getting started with Object-Oriented Programming (OOP) and would like to know: What is the meaning of serialization in OOP parlance?

  3. c# - Serialize enum to string - Stack Overflow

    Feb 6, 2012 · Serialize enum to string Asked 13 years, 4 months ago Modified 5 months ago Viewed 80k times

  4. java - How to serialize Object to JSON? - Stack Overflow

    May 17, 2013 · I need to serialize some objects to a JSON and send to a WebService. How can I do it using the org.json library? Or I'll have to use another one? Here is the class I need to …

  5. java - What is object serialization? - Stack Overflow

    The ObjectOutputStream is constructed to serialize the object. Deserializing an Object in java The opposite operation of the serialization is called deserialization i.e. to extract the data from a …

  6. How to make a class JSON serializable - Stack Overflow

    Sep 22, 2010 · It's unfortunate that the answers all seem to answer the question "How do I serialize a class?" rather than the action question "How do I make a class serializable?" These …

  7. How to exclude property from Json Serialization - Stack Overflow

    I have a DTO class which I Serialize Json.Serialize(MyClass) How can I exclude a public property of it? (It has to be public, as I use it in my code somewhere else)

  8. What is the difference between Serialization and Marshaling?

    Marshaling and serialization are loosely synonymous in the context of remote procedure call, but semantically different as a matter of intent. In particular, marshaling is about getting …

  9. java - What does Serializable mean? - Stack Overflow

    Aug 7, 2010 · To serialize an object means to convert its state to a byte stream so that the byte stream can be reverted back into a copy of the object. A Java object is serializable if its class …

  10. How do I get formatted JSON in .NET using C#? - Stack Overflow

    Apr 18, 2010 · If you have a JSON string and want to "prettify" it, but don't want to serialise it to and from a known C# type then the following does the trick (using JSON.NET): using System; …