Top "Serialization" questions

Serialization is the process by which data-structures are converted into a format that can be easily stored or transmitted and subsequently reconstructed.

How can I display a JavaScript object?

How do I display the content of a JavaScript object in a string format like when we alert a variable? …

javascript serialization javascript-objects
Converting an object to a string

How can I convert a JavaScript object into a string? Example: var o = {a:1, b:2} console.log(o) console.log(…

javascript string object serialization tostring
How do I turn a C# object into a JSON string in .NET?

I have classes like these: class MyDate { int year, month, day; } class Lad { string firstName; string lastName; MyDate dateOfBirth; } And …

c# .net json serialization
Convert form data to JavaScript object with jQuery

How do I convert all elements of my form to a JavaScript object? I'd like to have some way of …

javascript jquery json serialization
What is a serialVersionUID and why should I use it?

Eclipse issues warnings when a serialVersionUID is missing. The serializable class Foo does not declare a static final serialVersionUID field …

java serialization serialversionuid
Serializing to JSON in jQuery

I need to serialize an object to JSON. I'm using jQuery. Is there a "standard" way to do this? My …

javascript jquery ajax json serialization
How to make a class JSON serializable

How to make a Python class serializable? A simple class: class FileItem: def __init__(self, fname): self.fname = fname What …

python json serialization
Deserialize JSON into C# dynamic object?

Is there a way to deserialize JSON content into a C# 4 dynamic type? It would be nice to skip creating …

c# .net json serialization dynamic
How to Deserialize XML document

How do I Deserialize this XML document: <?xml version="1.0" encoding="utf-8"?> <Cars> <Car> <…

c# asp.net xml serialization xml-deserialization
Convert a python dict to a string and back

I am writing a program that stores data in a dictionary object, but this data needs to be saved at …

python json dictionary serialization