Answer Posted / baskar
Introduction
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. This type of
the file can not be understood by the user. It is a special
types of object i.e. reused by the JVM (Java Virtual
Machine). This process of serializing an object is also
called deflating or marshalling an object.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why singleton is not thread safe?
What is treeset in java collection?
Which oo concept is achieved by using overloading and overriding?
what is thread? What are the high-level thread states? : Java thread
What is bufferedwriter?
when should you use stringbuilder class in a program?
Does java map allow duplicates?
Is a char always 1 byte?
Is hashset ordered java?
What are selection structures?
How do you do a line break in java?
Explain the difference between the public, private, final, protected, and default modifiers?
What best practices should you follow while writing multithreaded code in java?
What is singletonlist in java?
Are strings immutable in java?