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 |
Explain the use of javap tool.
Explain the difference between serializable and externalizable in java?
What is unsigned char?
What is the different between get and post?
system.out.println(1 + 3);
Is zero a natural number?
What is the functionability stubs and skeletons?
How many types of thread in java? give the name
How do you do a line break in java?
What does the append?
Why is java called java?
Can we create an object of static class in java?