How do you read the contents of a file into an ArrayList in Java?
ArrayList
Here are the file contents:
cat ho
Simplest form I ever found is...
List lines = Files.readAllLines(Paths.get("/path/to/file.txt"));