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 string is a class?
What is maximum size of arraylist in java?
How do you change an int to a string?
Is Cegonsoft Pvt.Ltd. a good Institute?
Catch(Exception e){ } in that what is Exception and purpose of that in that place exactly?
What is the arraylist in java?
Does substring create a new object?
Define package in Java.
What does super()represent, and how is it used in Java?
Can you add null to a list java?
Explain the init method?
Explain all java features with real time examples