Tag

ObjectIO

0 views collected around this technical thread.

Architecture Digest
Architecture Digest
Oct 19, 2023 · Fundamentals

Understanding Java Serialization, serialVersionUID, and Their Practical Implications

This article explains what serialization and deserialization are, why Java classes must implement the Serializable interface, the role of serialVersionUID in version compatibility, and demonstrates with code how transient and static fields behave during object serialization and deserialization.

JavaObjectIOSerializable
0 likes · 9 min read
Understanding Java Serialization, serialVersionUID, and Their Practical Implications
360 Quality & Efficiency
360 Quality & Efficiency
Jun 25, 2020 · Backend Development

Understanding Java RMI Serialization and Object Transmission with Example Code

This article explains the Java RMI communication model, the need for object serialization, the requirements for serializable classes, and provides complete example code for a Person class, object I/O operations, and a simple socket‑based stub‑skeleton implementation to demonstrate remote object retrieval.

JavaObjectIORMI
0 likes · 8 min read
Understanding Java RMI Serialization and Object Transmission with Example Code
Selected Java Interview Questions
Selected Java Interview Questions
Nov 12, 2019 · Backend Development

Understanding Java Serialization and Deserialization

This article explains what Java serialization and deserialization are, why they are needed for object persistence and distributed systems, and provides step‑by‑step code examples showing how to implement them using the Serializable interface and ObjectOutputStream.

JavaObjectIObackend
0 likes · 6 min read
Understanding Java Serialization and Deserialization