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 it possible for a yielded thread to get chance for its execution again?
Can a constructor be protected?
What does g mean in regex?
What is super?
What are java methods?
What invokes a thread's run() method in java programming?
What is polymorphism java example?
Define Wrapper Classes in Java.
What is the public method modifier?
what is meta-Inf?
Explain about collection interface in java?
How do you decide when to use arraylist and linkedlist?