Open In App

PrintWriter print(String) method in Java with Examples

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

The print(String) method of PrintWriter Class in Java is used to print the specified String value on the stream. This String value is taken as a parameter.

Syntax:

public void print(String StringValue)

Parameters: This method accepts a mandatory parameter StringValue which is the String value to be written on the stream.

Return Value: This method do not returns any value.

Below methods illustrates the working of print(String) method:

Program 1:




// Java program to demonstrate
// PrintWriter print(String) method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a PrintWriter instance
            PrintWriter writer
                = new PrintWriter(System.out);
  
            // Print the String value 'GeeksForGeeks'
            // to this stream using print() method
            // This will put the StringValue in the
            // stream till it is printed on the console
            writer.print("GeeksForGeeks");
  
            writer.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

GeeksForGeeks

Program 2:




// Java program to demonstrate
// PrintWriter print(String) method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a PrintWriter instance
            PrintWriter writer
                = new PrintWriter(System.out);
  
            // Print the String value 'GFG'
            // to this stream using print() method
            // This will put the StringValue in the
            // stream till it is printed on the console
            writer.print("GFG");
  
            writer.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

GFG


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads