Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

StringWriter toString() method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The toString() method of StringWriter Class in Java is used to get the String representation of this StringWriter instance. This method does not accept any parameter and returns the required String value.

Syntax:

public String toString()

Parameters: This method accepts does not accepts any parameter.

Return Value: This method returns a String value which is the String representation of the StringWriter instance.

Below methods illustrates the working of toString() method:

Program 1:




// Java program to demonstrate
// StringWriter toString() method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a StringWriter instance
            StringWriter writer
                = new StringWriter();
  
            // Get the String
            // to be written in the stream
            String string = "GeeksForGeeks";
  
            // Write the string
            // to this writer using write() method
            writer.write(string);
  
            System.out.println("String representation: "
                               + writer.toString());
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

String representation: GeeksForGeeks

Program 2:




// Java program to demonstrate
// StringWriter toString() method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a StringWriter instance
            StringWriter writer
                = new StringWriter();
  
            // Get the String
            // to be written in the stream
            String string = "GFG";
  
            // Write the string
            // to this writer using write() method
            writer.write(string);
  
            System.out.println("String representation: "
                               + writer.toString());
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

String representation: GFG

My Personal Notes arrow_drop_up
Last Updated : 30 Oct, 2019
Like Article
Save Article
Similar Reads
Related Tutorials