I dont want to use serialzable in java is there any another
concept
so plz tell me
Answer Posted / niraj deshmukh
Java provides Serialzable Interface to persist the object
state in distributed enviroment (if wanted to transfer the
over wire).
for e.g :
class persist implements Serializable {
// object's state needs to persist
private String state;
.
.
}
There is another way to achieve this behavior using
"Externalizable" interface. By implementing this, developer
can customized the serializable process.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Can you inherit from an abstract class java?
Is minecraft 1.15 out?
What is a generic data type?
What are the different types of inner classes?
Describe the Big-O Notation.
What are different types of references?
What are the different http methods?
Is string is a data type?
How many types of equations are there?
What is * argv?
What is immutability in java?
What is a jagged array in java?
What is data type in java?
What is module with example?
Explain enumeration in java?