Learn how to work with files i.e., reading, writing and deleting, files and folders, etc. Also, learn how to make API calls, parse the incoming response, and so on.
FileWriter - this class is useful to create a file by writing characters into itFileReader - this class is useful to read data in form of characters from fileFiles.lines(Paths.get("file.txt"))) - processing the files as a stream. Since Java 8Files.readString / Files.writeString - reads the whole file and puts it into a string - since Java 11Visit the following resources to learn more: