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)

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 ...
492
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 ...
150
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#?
173
votes
14answers
62k 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.
72
votes
5answers
96k 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> ...
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 ...
34
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 ...
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 ...
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 ...
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?
26
votes
5answers
48k views

Writing XML on Android

Given an instance of org.w3c.dom.Document, how do I save its contents to a file/stream? EDIT: As CommonsWare pointed out, there's no such possibility using classes from Android SDK prior to Android ...
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 ...
28
votes
9answers
16k 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 ...
33
votes
10answers
25k views

What is object serialization?

What is meant by "object serialization"? Can you please explain it with some examples?
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
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 ...
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 ...
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 ...
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". ...
19
votes
4answers
11k views

Appending to an ObjectOutputStream

Is it not possible to append to an ObjectOutputStream? I am trying to append to a list of objects. Following snippet is a function that is called whenever a job is finished. FileOutputStream fos = ...
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.
52
votes
9answers
44k views

XML serialization in Java?

Is there a (preferably free) Java analogue of .NET's XML serialization?
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 ...
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: ...
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 ...
25
votes
2answers
20k views

How can I customize serialization of a list of JAXB objects to JSON?

I'm using Jersey to create a REST web service for a server component. The JAXB-annotated object I want to serialize in a list looks like this: @XmlRootElement(name = "distribution") @XmlType(name = ...
8
votes
3answers
38k views

Submit form using AJAX and jQuery

It seems like this should be something built into jQuery without the need for more than a few lines of code, but I can't find the "simple" solution. Say, I have an HTML form: <form method="get" ...
18
votes
6answers
6k views

How to implement serialization in C++

Whenever I find myself needing to serialize objects in a C++ program, I fall back to this kind of pattern: class Serializable { public: static Serializable *deserialize(istream &is) { ...
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> ...
22
votes
9answers
32k views

What is the best way to convert a java object to xml with open source apis

I was wondering what the best or most widely used apis are to convert a java object to xml. I'm fairly new on the subject. Is there some sort of api call you can make to pass in an object and return ...
22
votes
5answers
8k views

Spring session-scoped beans (controllers) and references to services, in terms of serialization

a standard case - you have a controller (@Controller) with @Scope("session"). classes put in the session usually are expected to implement Serializable so that they can be stored physically in case ...
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 ...
23
votes
9answers
13k views

EF 4.1 - Code First - JSON Circular Reference Serialization Error

I am getting an a Circular Reference Serialization Error although, to my knowledge I do not have any circular references. I am retrieving a set of Orders from the database and sending them to the ...
32
votes
6answers
47k views

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 to store an associative array of drive letters to map (key is the drive letter, ...
16
votes
5answers
17k views

How to serialize DOM node to JSON?

I want to serialize DOM node or even whole window to JSON. For example: >> serialize(document) -> { "URL": "http://stackoverflow.com/posts/2303713", "body": { ...
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 ...
25
votes
4answers
8k views

ASP.NET MVC: Controlling serialization of property names with JsonResult

Is there a way to control the JSON output of JsonResult with attributes, similar to how you can use XmlElementAttribute and its bretheren to control the output of XML serialization? For example, ...
31
votes
4answers
24k views

How do I use jQuery's form.serialize but exclude empty fields

I have a search form with a number of text inputs & drop downs that submits via a GET. I'd like to have a cleaner search url by removing the empty fields from the querystring when a search is ...
32
votes
8answers
18k 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 ...
21
votes
9answers
48k views

How do I map XML to C# objects

I have an XML that I want to load to objects, manipulate those objects (set values, read values) and then save those XMLs back. It is important for me to have the XML in the structure (xsd) that I ...
19
votes
12answers
35k views

Using jQuery to grab the content from CKEditor's iframe

Hey guys, I have this custom written CMS that uses CKEditor *(FCKEditor v3) for editing content. Along with that I'm using the jQuery Validation plugin to check all fields for error prior to ...
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 ...
22
votes
4answers
14k views

XML serialization of interface property

I would like to XML serialize an object that has (among other) a property of type IModelObject (which is an interface). public class Example { public IModelObject Model { get; set; } } When I ...
20
votes
6answers
9k views

Json and Circular Reference Exception

I have an object which has a circular reference to another object. Given the relationship between these objects this is the right design. To Illustrate Machine => Customer => Machine As is ...
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 = ...
15
votes
8answers
11k views

Using Json.NET converters to deserialize properties

I have a class definition that contains a property that returns an interface. public class Foo { public int Number { get; set; } public ISomething { get; set; } } Attempting to serialize ...
20
votes
3answers
13k views

Is There a JSON Parser for VB6 / VBA?

I am trying to consume a web service in VB6. The service - which I control - currently can return a SOAP/XML message or JSON. I am having a really difficult time figuring out if VB6's SOAP type ...
7
votes
2answers
1k views

Storing arrays in the database

I'm wondering if it is actually good practise to store Arrays in the database ? I tend to use json_encode rather than serialize, but was just wondering if it is a good idea. If not, then I can make ...
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. ...
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 ...

1 2 3 4 5 29