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 do I modify serialized form data in jQuery?

I am trying to submit my form in AJAX, so I have to serialize() the data. But I am using …

jquery serialization fckeditor
Jersey + Jackson JSON date format serialization - how to change the format or use custom JacksonJsonProvider

I am using Jersey + Jackson to provide REST JSON services layer for my application. The problem I have is that …

java serialization jersey jax-rs jackson
How to analyze binary file?

I have a binary file. I don't know how it's formatted, I only know it comes from a delphi code. …

binary reverse-engineering serialization code-analysis
ForeignKey does not allow null values

I am using the Django REST Framework 2.0. Here is my model class: class Mission(models.Model): assigned_to = models.ForeignKey(…

django-rest-framework model foreign-keys serialization
C# Object Binary Serialization

I want to make a binary serialize of an object and the result to save it in a database. Person …

c# string serialization binaryformatter
Serialize Python dictionary to XML

There is simple JSON serialization module with name "simplejson" which easily serializes Python objects to JSON. I'm looking for similar …

python xml serialization xml-serialization
Exclude property from serialization via custom attribute (json.net)

I need to be able to control how/whether certain properties on a class are serialized. The simplest case is […

c# serialization json.net custom-attributes
Making object JSON serializable with regular encoder

The regular way of JSON-serializing custom non-serializable objects is to subclass json.JSONEncoder and then pass a custom encoder to …

python json serialization monkeypatching
How to handle a Findbugs "Non-transient non-serializable instance field in serializable class"?

Consider the class below. If I run Findbugs against it it will give me an error ("Non-transient non-serializable instance field …

java serialization findbugs
How I can I lazily read multiple JSON values from a file/stream in Python?

I'd like to read multiple JSON objects from a file/stream in Python, one at a time. Unfortunately json.load() …

python json serialization