differences between the serializable and externizable

please give me
[21 byte] By [sudha_1234a] at [2007-10-2 21:44:17]
# 1
http://java.sun.com/j2se/1.5.0/docs/api/java/io/Externalizable.html
YoGeea at 2007-7-14 0:59:46 > top of Java-index,Java Essentials,New To Java...
# 2
> please give megivemecount=70;
ansi-boya at 2007-7-14 0:59:46 > top of Java-index,Java Essentials,New To Java...
# 3

Recently i gathered information

serializable:

is the super interface for the externalizable.

during deserialization, it doesnot call the construtor.

it follows the stored bits retrieval concept.

this is the marker interface.

externalizable:

extends serializable.

uses the constructor during the deserialization

contains two methods:writeExternal(),readExternal()

Cheers

Kurakula Sudhakar Reddy(Sudha).

sudha_1234a at 2007-7-14 0:59:46 > top of Java-index,Java Essentials,New To Java...