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 Stream Tokenizer?
Can an interface extands a class?
What is a variable in java?
What are exceptions
Are variables stored in ram?
program to validate the IP address? Validity range should be 0 to 255
Can you override static methods?
How do you check if a character in a string is a digit or letter?
What is unsigned char?
Why is Java a platform independent language?
What is a dynamic array java?
Explain the difference between string, stringbuffer and stringbuilder in java?