Top "Deserialization" questions

Deserialization is the process by which an object is recreated from its serialized state.

Reading an object via ObjectInputStream throws EOF exception

I am trying to read an object via ObjectInputStream. However I retrieve the following stacktrace with an EOFException: java.io.…

java serialization file-io deserialization objectinputstream
SignalR : use camel case

I would like to know if there is a way to configure SignalR so that the client functions in the …

serialization json.net signalr deserialization
Binary serialization vs. JSON vs. xml

Does anyone know what are approximately the performance gains, in terms of time, when using binary serialization versus JSON versus …

xml json serialization deserialization binary-serialization
How to serialize/de-serialize a custom DataSet

I have a winforms app that uses a strongly typed custom DataSet for holding data for processing. It gets populated …

c# serialization deserialization strongly-typed-dataset
Cannot serialize member <x> because it is an interface

Follow on question from Error with explicit conversion when using CollectAs<> Code from WebMethod return client.Cypher .Match("(…

c# asp.net deserialization xml-serialization neo4jclient
ClassNotFoundException when deserializing a binary class file's contents

I don't know much about Java. I'm trying to read a file containing an int and various instances of a …

java class file loader deserialization
How to Deserialize xml to an array of objects?

I am tryind to deserialize a xml file into an object[] - the object is a rectangle with the following …

c# xml-serialization deserialization xml-deserialization
Jackson deserialization convertValue vs readValue

I have a org.json.JSONArray that contains JSONObjects and I am trying to map those to a POJO. I …

java serialization jackson deserialization json-deserialization
c# NewtonJson Jarray check null/empty error

How we can check a json array is null or emty? Json: { "productList": [ { "id": 2440, "serviceStatus": 1, "listOfBillProductsExtras": [ { "id": 2441, "amount": 1, "balance": 2, } ], "deskName": "…

c# json null deserialization isnullorempty
How to write custom serializer and deserializer in Jackson?

I have a class that has more than a dozen properties. For most of the properties of primitive type, I …

json serialization deserialization jackson ektorp