> 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, 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?