In this video you will learn how to read and write text files using Java New Input/Output API - NIO.
By the end of the video you will know how to use Files.readAllLines/Files.newBufferedReader for reading text files and Files.writeString/Files.newBufferedWriter for writing to text files.
Link to Java code used in video:
https://github.com/BornToGeek1/youtube/blob/master/java/LearnJava/src/files/TextFilesNIO.java
Timeline:
0:00 Intro
0:25 Reading small text file
2:57 Reading large text file
4:44 Writing small amount of text to file
6:55 Writing large amount of text to file