Tagged Questions
Serialization is the process by which an object is converted into a format that can be stored and later retrieved.
110
votes
16answers
76k views
Serialize form to JSON with jQuery
How do I serialize all elements of my form to a JSON object?
I'd like to have some way of automatically building a JSON object from my form, without having to loop over each element. I do not want a ...
75
votes
13answers
42k 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 ...
67
votes
13answers
22k 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 ...
61
votes
10answers
40k 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#?
56
votes
9answers
19k views
Biggest differences of Thrift vs Protocol Buffers?
What are the biggest pros and cons of Apache Thrift vs Google's Protocol Buffers?
51
votes
2answers
49k 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 ...
49
votes
9answers
12k 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.
42
votes
8answers
15k 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 ...
40
votes
9answers
8k 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 ...
34
votes
9answers
19k views
31
votes
6answers
14k 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 ...
28
votes
15answers
22k views
Json <-> Java serialization that works with GWT
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. ...
28
votes
8answers
15k 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 ...
28
votes
10answers
15k 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 ...
27
votes
3answers
5k 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". ...
27
votes
8answers
6k 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?
26
votes
6answers
17k views
What is the difference between Serializable and Externalizable in Java?
What is the difference between Serializable and Externalizable in Java?
25
votes
12answers
3k views
Simple way to do Xml in Java
Is there is Simple way to read and write Xml in Java?
I've used a SAX parser before but I remember it being unintuitive, I've looked at a couple of tutorials for JAXB and it just looks complicated.
...
25
votes
2answers
6k 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:
...
25
votes
11answers
6k 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 ...
24
votes
5answers
7k 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.
24
votes
6answers
4k 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 ...
23
votes
6answers
6k views
What is the difference between Serialization and Marshalling?
I know that in terms of several distributed techniques like RPC the term Marshalling is used, but I don't get the difference with Serialization. It both is transforming objects to series of bits no?
...
23
votes
6answers
38k 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>
...
22
votes
6answers
5k 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?
22
votes
8answers
7k views
Fast and compact object serialization in .NET
I want to use object serialization to communicate over the network between a Mono server and Silverlight clients.
It is pretty important that serialization is space efficient and pretty fast, as the ...
22
votes
8answers
3k views
GUI tool to browse Java serialized objects
Is there a GUI application that can open serialized Java object files (both binary and XML format) and display them in browsable fashion (maybe like the Eclipse debugger displays the state of ...
21
votes
1answer
2k 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 :
...
21
votes
5answers
12k 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>
...
21
votes
6answers
6k views
Serializing anonymous delegates in C#
I am trying to determine what issues could be caused by using the following serialization surrogate to enable serialization of anonymous functions/delegate/lambdas.
// see ...
20
votes
2answers
772 views
C# and F# lambda expressions code generation
Let's look at the code, generated by F# for simple function:
let map_add valueToAdd xs =
xs |> Seq.map (fun x -> x + valueToAdd)
The generated code for lambda expression (instance of F# ...
20
votes
2answers
3k views
Should an abstract class have a serialVersionUID
In java, if a class implements Serializable but is abstract, should it have a serialVersionUID long declared, or do the subclasses only require that?
In this case it is indeed the intention that all ...
20
votes
7answers
8k 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 ...
20
votes
5answers
8k 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 ...
20
votes
6answers
12k 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 ...
20
votes
12answers
3k views
What is the most flexible serialization for .NET objects, yet simple to implement?
I would like to serialize and deserialize objects without having to worry about the entire class graph.
Flexibility is key. I would like to be able to serialize any object passed to me without ...
19
votes
4answers
17k 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 ...
19
votes
3answers
10k views
How do I serialize a simple object in iPhone sdk?
I have a dictionary of objects; they are all POCO objects that should be serializable. What technique should I look at for writing these to disk. I'm looking for the simplest option to write a few ...
19
votes
5answers
29k 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>
...
18
votes
3answers
9k views
JSON Serializing Django Models with simplejson
I'd like to use simplejson to serialize a Django model. Django's serializer doesn't support dictionaries... and simplejson doesn't support Django Querysets. This is quite a conundrum.
In the model ...
18
votes
6answers
4k views
What JSON library works well for you in .NET?
I'd be interested in hearing what JSON library folks in the community have been using inside of .NET? I have a need to parse/serialize some JSON object graphs from inside .NET (C#) to actual .NET ...
18
votes
7answers
8k views
Serialize Data Structures in C
I'd like a C library that can serialize my data structures to disk, and then load them again later. It should accept arbitrarily nested structures, possibly with circular references.
I presume that ...
18
votes
8answers
14k views
How do I add a type to GWT's Serialization Policy whitelist?
GWT's serializer has limited java.io.Serializable support, but for security reasons there is a whitelist of types it supports. The documentation I've found, for example this FAQ entry, says that any ...
17
votes
1answer
186 views
Serializing null in JSON.NET
When serializing arbitrary data via JSON.NET, any property that is null is written to the JSON as
"propertyName" : null
This is correct, of course.
However I have a requirement to ...
17
votes
4answers
2k 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 ...
17
votes
6answers
37k 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 ...
17
votes
3answers
4k 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.
...
17
votes
3answers
12k views
Jquery sortable list won't serialize, why?
I'm implementing a sortable list of images with jquery in a Zend Framework application.
I just can't get the .sortable('serialize') method to return more than an empty string.
When I try with a few ...
16
votes
2answers
356 views
Simple, hassle-free, zero-boilerplate serialization in Scala/Java similar to Python's Pickle?
Is there a simple, hassle-free approach to serialization in Scala/Java that's similar to Python's pickle? Pickle is a dead-simple solution that's reasonably efficient in space and time (i.e. not ...
16
votes
6answers
395 views
Good examples, articles and books on marshalling [closed]
While working on a software protection library for smart card based dongle I realized I need to transfer some tree-like data structures back and forth between client application and code inside the ...