Problem: How to create a temporary file in Java 8? Sometimes it’s needed to create a temporary file during tests, verify result, and then delete it at the end. As usual it can be easily done using Java 8 Files API.
Continue reading Java 8 create temporary filejava8-files
Problem: How to write to a text file in Java 8?
Continue reading Java 8 write to a text fileProblem: How to read file into a String in Java 8?
Continue reading Java 8 read file into a StringProblem: How to read lines from a text file in Java 8?
Continue reading Java 8 read lines from a text file