About 119,000 results
Open links in new tab
  1. Serialization - Wikipedia

    In computing, serialization (or serialisation, also referred to as pickling in Python) is the process of translating a data structure or object state into a format that can be stored (e.g. files in secondary …

  2. Serialization and Deserialization in Java - GeeksforGeeks

    Jun 1, 2026 · Serialization and Deserialization are important Java mechanisms used to convert objects into a byte stream and reconstruct them back into objects. Together, they enable object persistence, …

  3. What Are Serialization and Deserialization in Programming?

    Mar 18, 2024 · Serialization and deserialization are two important concepts in programming that allow objects to be easily stored, transmitted, and reconstructed. They’re used in various scenarios, such …

  4. Serialization - .NET | Microsoft Learn

    Oct 25, 2023 · Serialization is the process of converting the state of an object into a form that can be persisted or transported. The complement of serialization is deserialization, which converts a stream …

  5. Java Object Serialization - Oracle

    Object Serialization supports the encoding of objects and the objects reachable from them, into a stream of bytes. Serialization also supports the complementary reconstruction of the object graph from a …

  6. What is serialization and how does it work? | Hazelcast

    Serialization is the process of converting a data object—a combination of code and data represented within a region of data storage—into a series of bytes that saves the state of the object in an easily …

  7. 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 object into a static …

  8. Serialization: Understanding Its Role in Python, Java, and Data ...

    May 25, 2026 · Explore how serialization works in programming, discover its role in Python, Java, and data management, and learn more about its common uses.

  9. Mastering Serialization & Deserialization in Programming Languages ...

    Understand how to serialize and deserialize data effectively across programming languages like JavaScript, Python, Java, Go, Ruby, and PHP. This in-depth guide explains JSON, XML, CSV, and …

  10. What is Serialization? - freeCodeCamp.org

    Jan 10, 2022 · Serialization Process Marshaling and Serialization - what are the differences? The process of marshaling might come to mind. Marshaling is the process of transforming the memory …