Serialization is the process by which an object is converted into a format that can be stored and later retrieved.

learn more… | top users | synonyms (7)

490
votes
13answers
108k views

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 of type long What is serialVersionUID and why is ...
361
votes
25answers
181k views

Convert form data to JS object with jQuery

How do I convert all elements of my form to a JS object? I'd like to have some way of automatically building a JS object from my form, without having to loop over each element. I do not want a ...
173
votes
14answers
61k views

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 a bunch of classes in order to use the DataContractJsonSerializer.
169
votes
14answers
45k views

Preferred method to store PHP arrays (json_encode vs serialize)

I need to store a multi-dimensional associative array of data in a flat file for caching purposes. I might occasionally come across the need to convert it to JSON for use in my web app but the vast ...
149
votes
11answers
88k views

How do you do a deep copy an object in .Net (C# specifically)?

I want a true deep copy. In Java, this was easy, but how do you do it in C#?
141
votes
14answers
74k views

XmlSerializer - There was an error reflecting type

Using C# .NET 2.0, I have a composite data class that does have the [Serializable] attribute on it. I am creating an XMLSerializer class and passing that into the constructor: XmlSerializer ...
102
votes
7answers
21k views

JSON serialization of c# enum as string

I have a class that contains an enum property, and upon serializing the object using JavaScriptSerializer, my json result contains the integer value of the enumeration rather than its string "name". ...
95
votes
9answers
33k views

Biggest differences of Thrift vs Protocol Buffers?

What are the biggest pros and cons of Apache Thrift vs Google's Protocol Buffers?
84
votes
4answers
99k views

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 as to how to accomplish what I need. Here is the format for the JSON I need to ...
83
votes
11answers
16k views

.NET How to serialize a TimeSpan to XML

I am trying to serialize a .NET TimeSpan object to XML and it is not working. A quick google has suggested that while TimeSpan is serializable, the XmlCustomFormatter does not provide methods to ...
72
votes
5answers
95k views

How to Deserialize XML document

How do I Deserialize this XML document: <?xml version="1.0" encoding="utf-8"?> <Cars> <Car> <StockNumber>1020</StockNumber> <Make>Nissan</Make> ...
66
votes
7answers
13k views

What is the difference between Serialization and Marshaling?

I know that in terms of several distributed techniques (such as RPC), the term "Marshaling" is used but don't understand how it differs with Serialization. Aren't they both transforming objects into ...
59
votes
9answers
26k views

XML Serialization and Inherited Types

following on from my previous question I have been working on getting my object model to serialize to XML. But I have now run into a problem (quelle surprise!). The problem I have is that I have a ...
52
votes
9answers
44k views

XML serialization in Java?

Is there a (preferably free) Java analogue of .NET's XML serialization?
51
votes
8answers
37k views

What is the difference between Serializable and Externalizable in Java?

What is the difference between Serializable and Externalizable in Java?
51
votes
8answers
20k views

Why generate long serialVersionUID instead of a simple 1L?

When class implements Serializable in Eclipse, I have two options: add default serialVersionUID(1L) or generated serialVersionUID(3567653491060394677L). I think that first one is cooler, but many ...
48
votes
6answers
25k views

Serialize a nullable int

I have a class with a nullable int? datatype set to serialize as an xml element. Is there any way to set it up so the xml serialializer will not serialize the element if the value is null? I've ...
47
votes
2answers
39k views

Java Serializable Object to Byte Array

From my searches for Serialization in Java most of the examples document writing to a file or reading from one. my question is lets say i have a serializable class AppMessage. I would like to ...
47
votes
6answers
8k views

What is the correct way to make a custom .NET Exception serializable?

More specifically, when the exception contains custom objects which may or may not themselves be serializable. Take this example: public class MyException : Exception { private readonly string ...
47
votes
2answers
10k views

How does WCF deserialization instantiate objects without calling a constructor?

There is some magic going on with WCF deserialization. How does it instantiate an instance of the data contract type without calling its constructor? For example, consider this data contract: ...
47
votes
5answers
10k views

Benefit of using Parcelable instead of serializing object

As I understand, Bundle and Parcelable belongs to the way Android performs serialization in. It is used for example in passing data between activities. But I wonder, if there are any benefits in using ...
47
votes
4answers
14k views

Python: how to make a class JSON serializable

So, that's the question: How to make a class serializable? a simple class: class FileItem: def __init__(self, fname): self.fname = fname What should I do to be able to get output ...
45
votes
3answers
40k views

converting Java bitmap to byte array

Bitmap bmp = intent.getExtras().get("data"); // from camera int size = bmp.getRowBytes() * bmp.getHeight(); ByteBuffer b = ByteBuffer.allocate(size); bmp.copyPixelsToBuffer(b); byte[] bytes = ...
45
votes
8answers
26k views

How to check if an object is serializable in C#

I am looking for an easy way to check if an object in C# is serializable. As we know you make an object serializable by either implementing the ISerializable interface or by placing the ...
43
votes
12answers
50k views

How to serialize an object into a string

I am able to serialize an object into a file and then restore it again as is shown in the next code snippet. I would like to serialize the object into a string and store into a database instead. Can ...
43
votes
6answers
16k views

Check to see if a string is serialized?

What's the best way to determine whether or not a string is the result / output of the serialize() function?
43
votes
2answers
743 views

In C#, how do you one-way serialize the unserializable?

Oftentimes, I need to serialize an object, either for logging or debugging. This is a one-way serialization -- I don't need to get it back out later, I just need to turn an object into a string to ...
42
votes
3answers
26k views

How do you serialize an object in C++?

I have a small hierarchy of objects that I need to serialize and transmit via a socket connection. I need to both serialize the object, then deserialize it based on what type it is. Is there an easy ...
41
votes
8answers
10k views

boost serialization vs google protocol buffers?

Does anyone with experience with these libraries have any comment on which one they preferred? Were there any performance differences or difficulties in using?
41
votes
6answers
30k views

Is it possible to deserialize XML into List<T>?

Given the following XML: <?xml version="1.0"?> <user_list> <user> <id>1</id> <name>Joe</name> </user> <user> ...
39
votes
13answers
34k views

Json <-> Java serialization that works with GWT [closed]

I am looking for a simple Json (de)serializer for Java that might work with GWT. I have googled a bit and found some solutions that either require annotate every member or define useless interfaces. ...
39
votes
2answers
12k views

Performant Entity Serialization: BSON vs MessagePack (vs JSON)

Recently I've found MessagePack an alternative binary serialization format to Google's Protocol Buffers and JSON which also outperforms both. Also there's the BSON serialization format that is used ...
39
votes
2answers
4k views

DataContractSerializer doesn't call my constructor?

I just realized something crazy, which I assumed to be completely impossible : when deserializing an object, the DataContractSerializer doesn't call the constructor ! Take this class, for instance : ...
39
votes
5answers
20k views

Serializing private member data

I'm trying to serialize an object to XML that has a number of properties, some of which are readonly. public Guid Id { get; private set; } I have marked the class [Serializable] and I have ...
39
votes
6answers
13k views

Serializing and Deserializing Expression Trees in C#

Is there a way to Deserialize Expressions in C#, I would like to store Expressions in a Database and load them at run time.
36
votes
4answers
38k views

C# automatic property deserialization of JSON

I need to deserialize some JavaScript object represented in JSON to an appropriate C# class. Given the nice features of automatic properties, I would prefer having them in these classes as opposed to ...
36
votes
8answers
62k views

Deserializing XML to Objects in C#

So I have xml that looks like this: <todo-list> <id type="integer">#{id}</id> <name>#{name}</name> <description>#{description}</description> ...
36
votes
2answers
13k views

Ignoring a field during .NET JSON serialization; similar to [XmlIgnore]?

I have a POCO class that is being sent to the browser as a JSON string in .NET 3.5 sp1. I am just using the default JSON serialization and I have some fields that I want to ignore. I want to put an ...
36
votes
7answers
25k views

WCF: DataMember attribute on property vs. member

In wcf, what is the difference between applying the DataMember attribute on a property private int m_SomeValue; [DataMember] public int SomeValue { get {...} set {...} } instead of a ...
35
votes
10answers
19k views

How to get string Objects instead Unicode ones from JSON in Python?

I'm using Python (Python 2.5.2 on Ubuntu 8.10) to parse JSON from (ASCII encoded) text files. When loading these files with json (simplejson), all my string values are cast to Unicode objects instead ...
35
votes
4answers
35k views

JavaScriptSerializer.Deserialize - how to change field names

Summary: How do I map a field name in JSON data to a field name of a .Net object when using JavaScriptSerializer.Deserialize ? Longer version: I have the following JSON data coming to me from a ...
34
votes
7answers
109k views

Convert a JSON string to object in Java?

Is there a way in Java/J2ME to convert a string, such as: {name:"MyNode", width:200, height:100} to an internal Object representation of the same, in one line of code? Because the current method ...
34
votes
4answers
10k views

Is there a tool to generate C# classes based off a JSON string?

I'm wondering if there is a tool out there that can take in a JSON string, analyze it, and generate a C# class file that can then be used to deserialize the json string into a C# object of that class. ...
34
votes
11answers
12k views

Use the serialVersionUID or suppress warnings?

first thing to note is the serialVersionUID of a class implementing Interface Serializable is not in question. What if we create a class that for example extends HttpServlet? It also should have a ...
33
votes
10answers
25k views

What is object serialization?

What is meant by "object serialization"? Can you please explain it with some examples?
33
votes
4answers
36k views

Using StringWriter for XML Serialization

I'm currently searching for an easy way to serialize objects (in C# 3). I googled some examples and came up with something like: MemoryStream memoryStream = new MemoryStream ( ); XmlSerializer xs = ...
33
votes
10answers
17k views

Why Java needs Serializable interface?

We work heavily with serialization and having to specify Serializable tag on every object we use is kind of a burden. Especially when it's a 3rd-party class that we can't really change. The question ...
33
votes
11answers
21k views

How to serialize an Exception object in C#?

I am trying to serialize an Exception object in C#. However, it appears that it is impossible since the Exception class is not marked as Serializable. Is there a way to work around that? UPDATE: If ...
33
votes
8answers
27k views

Is it possible to serialize and deserialize a class in C++?

Is it possible to serialize and deserialize a class in C++? I've been using Java for 3 years now, and serialization / deserialization is fairly trivial in that language. Does C++ have similar ...
33
votes
2answers
14k views

Using Rails serialize to save hash to database

I'm try to save a hash mapping ids to a number of attempts in my rails app. My migration to the database to accommodate this new column: class AddMultiWrongToUser < ActiveRecord::Migration def ...

1 2 3 4 5 200