I dont want to use serialzable in java is there any another
concept
so plz tell me
Answers were Sorted based on User's Feedback
Answer / 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 |
Is java 1.7 the same as java 7?
What is jit compiler in java?
In which language JVM (Java Virtual Machine) is implemented
What are teh sub-classes of a component class?
Which variables are stored in heap?
What is ‘is-a ‘ relationship in java?
What are alternatives to java serialization?
what is inner class in java?
i need source code for income tax program using java inheritance
What is module in oop?
How two different class threads communicate with each other?. send example code.
What is difference between equals and hashcode method?