Arraylist serialized objects

Hello, I was hoping someone could direct me to a good guide on reading objects into an arrayList database from a file using serialization.Thanks
[165 byte] By [javaguy77] at [2007-11-26 12:16:43]
# 1

> Hello,

>

> I was hoping someone could direct me to a good guide

> on reading objects into an arrayList database from a

> file using serialization.

Use iterator to handling serialize objects

Iterator it = arraylist.iterator();

while(it.hasNext())

{

String str = (String)it.next();

}

ggopi at 2007-7-7 14:53:13 > top of Java-index,Archived Forums,Socket Programming...
# 2
Thanks,I'm going to be reading a writing from a .txt file so that should come in handy.
javaguy77 at 2007-7-7 14:53:13 > top of Java-index,Archived Forums,Socket Programming...
# 3
ggopi, have you been sniffing glue again?@OP: here's a good tutorial on Object Serialization: http://download.java.net/jdk6/docs/technotes/guides/serialization/index.htmlGood luck.
prometheuzz at 2007-7-7 14:53:13 > top of Java-index,Archived Forums,Socket Programming...
# 4

> ggopi, have you been sniffing glue again?

>

> @OP: here's a good tutorial on Object

> Serialization:

> http://download.java.net/jdk6/docs/technotes/guides/se

> rialization/index.html

>

> Good luck.

what about you?

ggopi at 2007-7-7 14:53:13 > top of Java-index,Archived Forums,Socket Programming...
# 5
> what about you?Only a tiny rock of crack. No glue; it makes me post strange things on internet forums.
prometheuzz at 2007-7-7 14:53:13 > top of Java-index,Archived Forums,Socket Programming...
# 6
> Only a tiny rock of crack. No glue; it makes me post> strange things on internet forums.According to others these are all only a poet words? I think you having a good futures in poet..
ggopi at 2007-7-7 14:53:13 > top of Java-index,Archived Forums,Socket Programming...