how many ways we can serialize the java object?
Answers were Sorted based on User's Feedback
Answer / manikandansit
in two ways we can serialize java object by implementing
Serializable and Externalizable interface
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ram
The core serialization support is in the java.io package,
and consists of two interfaces and two classes:
java.io.Serializable, java.io.Externalizable,
java.io.ObjectOutputStream, and java.io.ObjectInputStream.
Using java.io.ObjectOutputStream, you can write serialized
objects to any kind of stream: file, network, memory, etc.
Using java.io.ObjectInputStream, you can read serialized
objects from any kind of stream.
| Is This Answer Correct ? | 8 Yes | 5 No |
why operator overloading is removed in java?
When garbage collector invokes object?s finalize() method?
Why string objects are immutable in java?
Can we override the main method?
Can you sort a list in java?
What is a bufferedreader?
How can you generate random numbers in java?
What is stop(), suspend(), resume() method?
What is the use of coding?
What is data movement?
When you Click a Button, What event will be fired?
What is static method with example?