About 2,450,000 results
Open links in new tab
  1. java - What is object serialization? - Stack Overflow

    In Java, the serialization mechanism is built into the platform, but you need to implement the Serializable interface to make an object serializable. You can also prevent some data in your …

  2. java - What does Serializable mean? - Stack Overflow

    Aug 7, 2010 · The serialization runtime associates with each serializable class a version number, called a serialVersionUID, which is used during deserialization to verify that the sender and …

  3. What is the purpose of Serialization in Java? - Stack Overflow

    Serialization is also faster, because in Java, objects are handled on the heap, and take much longer than if they were represented as primitives on the stack. Speed, speed, speed. And …

  4. java - What is a serialVersionUID and why should I use it ... - Stack ...

    Nov 13, 2008 · The docs for java.io.Serializable are probably about as good an explanation as you'll get: The serialization runtime associates with each serializable class a version number, …

  5. How does Java's serialization work and when it should be used …

    The main advantage of serialization is that it is extremely easy to use, relatively fast, and preserves actual Java object meshes. But you have to realize that it's not really meant to be …

  6. What is serialization in Java? - Stack Overflow

    Mar 5, 2014 · Java API takes care of the serialization protocol and persists the java object in a file in conformance with the protocol. De-serialization is the process of getting the object back …

  7. java - Jackson serialization: ignore empty values (or null) - Stack ...

    Jackson serialization: ignore empty values (or null) Asked 12 years, 7 months ago Modified 1 year, 10 months ago Viewed 493k times

  8. java - Jackson enum Serializing and DeSerializer - Stack Overflow

    Aug 2, 2015 · The serializer / deserializer solution pointed out by @xbakesx is an excellent one if you wish to completely decouple your enum class from its JSON representation. Alternatively, …

  9. java - Is custom enum Serializable too? - Stack Overflow

    The reason it works is that serialization process for Enum 's is different from serialization process for other classes. From the official documentation: 1.12 Serialization of Enum Constants Enum …

  10. How to write and read java serialized objects into a file

    How to write and read java serialized objects into a file Asked 12 years, 5 months ago Modified 5 years, 10 months ago Viewed 188k times