About 8,760,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. jQuery: serialize() form and other parameters - Stack Overflow

    May 1, 2012 · jQuery: serialize () form and other parameters Asked 13 years, 6 months ago Modified 8 months ago Viewed 389k times

  3. 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 …

  4. How do you serialize an object in C++? - Stack Overflow

    Feb 7, 2009 · Well when you serialize an object graph you are not serializing just an object, you are serializing an entire system. This means the serialization of the system shouldn't start from …

  5. c# - Serialize an object to string - Stack Overflow

    I have the following method to save an Object to a file: // Save an object out to the disk public static void SerializeObject<T>(this T toSerialize, String filename) { XmlSerializer

  6. C - serialization techniques - Stack Overflow

    What are some good serialization techniques for C that make this easier / less ugly? - Note: I'm bound to a specific protocol so I cannot freely choose how to serialize my data.

  7. c# - Serialize an object to XML - Stack Overflow

    Nov 8, 2010 · I have a simple way to serialize an object to XML using C#, it works great and it's highly reusable. I know this is an older thread, but I wanted to post this because someone may …

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

    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)

  9. jQuery serialize and unserialize - Stack Overflow

    Apr 16, 2014 · I want to serialize and un-serialize a form with jQuery. How can I get all attributes of all elements in a serialized way?

  10. python - Serializing class instance to JSON - Stack Overflow

    2 An approach which I have been using in my Flask app to serialize Class instance to JSON response. Github project for reference