Last Updated : 11 Jul, 2025
The
write(String)method of
WriterClass in Java is used to write the specified String on the stream. This String value is taken as a parameter.
Syntax:public void write(String string)Parameters:
This method accepts a mandatory parameter
stringwhich is the String to be written in the Stream.
Return Value:This method do not returns any value. Below methods illustrates the working of write(String) method:
Program 1: Java
// Java program to demonstrate
// Writer write(String) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a Writer instance
Writer writer
= new PrintWriter(System.out);
// Write the String 'GeeksForGeeks'
// to this writer using write() method
// This will put the string in the stream
// till it is printed on the console
writer.write("GeeksForGeeks");
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
Program 2: Java
// Java program to demonstrate
// Writer write(String) method
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
// Create a Writer instance
Writer writer
= new PrintWriter(System.out);
// Write the String 'GFG'
// to this writer using write() method
// This will put the string in the stream
// till it is printed on the console
writer.write("GFG");
writer.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4