> What i want to be able to do is Serialize the double linked
> list (the one with the methods addNode,deleteNode etc...)
> and all the nodes inside the double linked list (so starting
> from head traverse the entire list and write out each node
> in the list), then i wont to somehow read all the nodes into
> the list.
Easy. Have your node class implement Serializable, and you're done. Or
easier yet, abandon your NIH-syndrome doubly linked list class and use
java.util.ArrayList, which already implements Serializable.

Signature
www.designacourse.com
The Easiest Way To Train Anyone... Anywhere.
Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation
placid - 09 Jan 2006 07:35 GMT
I already have, but when i write out the double linked list, and then
read it back in the only node that is written is the head node, the
rest is lost !
> easier yet, abandon your NIH-syndrome doubly linked list class and use
> java.util.ArrayList, which already implements Serializable.
Cant, because i need some customized methods that can only be
implemented with a DLL.
P.S : Google Groups is "Oops" on me and this is the only way i can post
atm.