Yahoo India Web Search

Search results

  1. Serialization means to convert an object into that string, and deserialization is its inverse operation (convert string -> object). When transmitting data or storing them in a file, the data are required to be byte strings, but complex objects are seldom in this format.

  2. Oct 4, 2024 · Serialization is a mechanism of converting the state of an object into a byte stream. Deserialization is the reverse process where the byte stream is used to recreate the actual Java object in memory. This mechanism is used to persist the object.

  3. en.m.wikipedia.org › wiki › SerializationSerialization - Wikipedia

    Flow diagram. 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 storage devices, data buffers in primary storage devices) or transmitted (e.g. data streams over computer networks) and ...

  4. Mar 18, 2024 · Serialization. An object has three primary characteristics: identity, state, and behavior. The state represents the value or data of the object. Serialization is the process of converting an object’s state to a byte stream. This byte stream can then be saved to a file, sent over a network, or stored in a database.

  5. Jan 10, 2022 · By George Offley During a recent project update meeting, my team talked about how we were going to use serialization to send data back and forth from this application. An engineer who was looking to get more into software projects told me that they ...

  6. Jan 15, 2009 · Serialization is the process of saving an object in a storage medium (such as a file, or a memory buffer) or to transmit it over a network connection in binary form. The serialized objects are JVM independent and can be re-serialized by any JVM. In this case the "in memory" java objects state are converted into a byte stream.

  7. Nov 27, 2018 · Serialization typically means writing the data as a string (think: xml / json) or as raw binary (a byte[] etc). Deserialization is the reverse process; taking the raw data (from a file, from an incoming network socket, etc) and reconstructing the object model.

  8. Data serialization is the process of converting structured data to a format that allows sharing or storage of the data in a form that allows recovery of its original structure. In some cases, the secondary intention of data serialization is to minimize the data’s size which then reduces disk space or bandwidth requirements.

  9. Jun 8, 2023 · The process whereby an object or data structure is translated into a format suitable for transfer over a network, or storage (e.g. in an array buffer or file format). In JavaScript, for example, you can serialize an object to a JSON string by calling the function JSON.stringify().

  10. Jan 9, 2024 · Definition: Serialization is the process of converting an object’s state (fields and data) into a byte stream. Purpose: It allows you to save the state of an object, so it can be reconstructed ...