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 |
Define inheritance?
What is protected and friendly?
what is the purpose of the runtime class?
Explain the importance of finally over return statement?
What are the legal parameters?
what is difference between signed & unsigned char?
Instead of writing Home, Remote Interfaces if i directly extends EJBObject to bean class what happens?
What are annotations in java?
Can a class be declared as static?
What is operator overloading. Is it is supported in java?
What is anonymous class?
How to Sort list of Strings in ascending order without using java api.