I've tried to get my head around this, but can't so asking the forum. Does anyone think it would be possible to save multiple ArrayLists to a file? Would I have to create multiple files for each List or could I bung them all in one with a reference of some sort? So far I have knocked up a quick experiment but to no avail. (this is just a quick representation of my code but I am away from the computer)
try {
fos = new FileOutputStream(file);
oos = new ObjectOutputStream(fos);
oos.writeObject(Ing);
oos.writeObject(IngN);
oos.writeObject(Step);
oos.close();
fos.close();
}
etc