What is the simplest method, i.e. The bare minimum to open a file, read it to a string and then close the file?
Also, what is the best way to store the strings that are coming in? For example I read from another site that you can just add new lines to the StringBuilder class. For example, would ArrayList<String> be the best way to do that?
Finally, if I am to read a series of characters rather than the string, how can I process all that while I have the file open... ie hasNext() something?
So, what is the easiest method?

