How do you read and display data from .txt files?
I love this piece of code, use it to load a file into one String:
File file = new File("/my/location"); String contents = new Scanner(file).useDelimiter("\\Z").next();