Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Object serialization allows saving an object's state as a sequence of bytes and its reconstitution at a later time. The primary application of serialization is in Java Remote Method Invocation (RMI) wherein objects must be packed (unmarshalled)packed and , exchanged between distributed virtual machines, and unpacked (unmarshalled). It also finds extensive use in Java Beans.

...