Java Create a Writer

Java Create a Writer

To create a Writer in Java, you can use the FileWriter class, which allows you to write characters to a file, like this:

Writer writer = new FileWriter("output.txt");
Sou‮ecr‬:www.lautturi.com

This creates a new FileWriter called writer that writes to the file "output.txt". The FileWriter is a subclass of Writer that provides methods for writing characters to a file.

You can then use the write method of the FileWriter to write characters to the file, like this:

writer.write("Hello, World!");

It is important to remember to close the FileWriter when you are finished writing to the file, to release any resources that it is using. You can do this using the close method, like this:

writer.close();

You can also use the BufferedWriter class to write characters to a file more efficiently, by buffering the characters in memory before writing them to the file. To create a BufferedWriter, you can use the following code:

BufferedWriter writer = new BufferedWriter(new FileWriter("output.txt"));

This creates a new BufferedWriter called writer that writes to the file "output.txt". The BufferedWriter is a subclass of Writer that provides methods for buffering and writing characters to a file.

Created Time:2017-11-03 00:14:39  Author:lautturi