I'm trying to store a serialized version of an ArrayList filled with a couple of my custom classes. I've made sure they're all serializable (ints and strings), but I get a "FileNotFoundException" when trying to read it back in. I have no trouble storing a simple string, or even an ArrayList of strings.
What would I have to do in order to store my own classes in the project CustomDataContainer?
What would I have to do in order to store my own classes in the project CustomDataContainer?