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.

Can Json.NET serialize / deserialize to / from a stream?

I have heard that Json.NET is faster than DataContractJsonSerializer, and wanted to give it a try... But I couldn't …

.net serialization json.net
How to send objects through bundle

I need to pass a reference to the class that does the majority of my processing through a bundle. The …

android serialization android-activity bundle parcelable
How can I ignore a property when serializing using the DataContractSerializer?

I am using .NET 3.5SP1 and DataContractSerializer to serialize a class. In SP1, they changed the behavior so that you …

c# .net wcf serialization
What is deserialize and serialize in JSON?

I have seen the terms "deserialize" and "serialize" with JSON. What do they mean?

json serialization deserialization json-deserialization json-serialization
How to Serialize a list in java?

I would like to deep clone a List. for that we are having a method // apache commons method. This object …

java serialization collections apache-commons
Parcelable encountered IOException writing serializable object getactivity()

so I am getting this in logcat: java.lang.RuntimeException: Parcelable encountered IOException writing serializable object (name = com.resources.student_…

android android-intent serialization
Serialize Class containing Dictionary member

Expanding upon my earlier problem, I've decided to (de)serialize my config file class which worked great. I now want …

c# .net serialization dictionary
Parsing JSON using Json.net

I'm trying to parse some JSON using the JSon.Net library. The documentation seems a little sparse and I'm confused …

c# parsing serialization json.net
Deserialize from string instead TextReader

I want to change my code from: string path = @"c:\Directory\test.xml"; XmlSerializer s = new XmlSerializer(typeof(Car)); TextReader …

c# xml serialization
How do you serialize a model instance in Django?

There is a lot of documentation on how to serialize a Model QuerySet but how do you just serialize to …

python django json django-models serialization