Reading all lines of a file from classpath in Java 8 and display on screen:
Files.lines(Paths.get(ClassLoader.getSystemResource("filename.extension") .toURI())).forEach(System.out::println);