Open In App

StringWriter write(String) method in Java with Examples

Last Updated : 29 Jan, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The write(String) method of StringWriter Class 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 string which is the String to be written in the Stream.

Return Value: This method does not returns any value.

Below programs illustrates the working of write(String) method:

Program 1:




// Java program to demonstrate
// StringWriter write(String) method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a StringWriter instance
            StringWriter writer
                = new StringWriter();
  
            // 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");
  
            System.out.println(writer.toString());
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

GeeksForGeeks

Program 2:




// Java program to demonstrate
// StringWriter write(String) method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a StringWriter instance
            StringWriter writer
                = new StringWriter();
  
            // 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");
  
            System.out.println(writer.toString());
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

GFG


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads