About 35,100 results
Open links in new tab
  1. Serialization and Deserialization in Java - GeeksforGeeks

    Jun 2, 2025 · Serialization helps us to save the current state of an object so that we can use it further and share complex data between different systems. In this article, we will discuss a lot …

  2. java - What is object serialization? - Stack Overflow

    Serialization is the process of turning a Java object into byte array and then back into object again with its preserved state. Useful for various things like sending objects over network or caching …

  3. Introduction to Java Serialization - Baeldung

    May 11, 2024 · Serialization is the conversion of the state of an object into a byte stream; deserialization does the opposite. Stated differently, serialization is the conversion of a Java …

  4. Java Object Serialization - Oracle

    Serialization is used for lightweight persistence and for communication via sockets or Java Remote Method Invocation (Java RMI). The default encoding of objects protects private and …

  5. Object Graphs in Java Serialization: How They Really Work (and …

    5 days ago · In this post, I’ll walk you through how object graphs behave during serialization, how Java tracks references (including cycles), and how to shape graphs intentionally. I’ll also show …

  6. Serialization in Java (Examples & Methods) - Intellipaat

    Jul 22, 2025 · Serialization in Java is the mechanism through which objects are transformed into a portable format that can be easily stored, transmitted, or reconstructed. This process involves …

  7. Java - Serialization - Online Tutorials Library

    Java provides a mechanism, called object serialization where an object can be represented as a sequence of bytes that includes the object's data as well as information about the object's type …

  8. Java Serialization Full Deep Dive | Medium

    Nov 6, 2023 · Java Serialization is more than just a conversion of Java objects into a byte stream; it is a sophisticated mechanism that plays a significant role in various Java applications, …

  9. Java Serialization and Deserialization: Complete Guide with …

    Java Serialization is a powerful mechanism that transforms Java objects into a byte stream, allowing them to be easily saved to files, databases, or transmitted over networks. …

  10. Serialization in Java: Mechanism, Benefits & Examples

    Jun 9, 2025 · Serialization in Java is the concept of representing an object’s state as a byte stream. The byte stream has all the information about the object. Usually used in Hibernate, …