PrintStream print(Object) method in Java with Examples

Last Updated : 11 Jul, 2025
The print(Object) method of PrintStream Class in Java is used to print the specified Object on the stream. This Object is taken as a parameter. Syntax:
public void print(Object object)
Parameters: This method accepts a mandatory parameter object which is the Object to be printed in the Stream. Return Value: This method do not returns any value. Below methods illustrates the working of print(Object) method: Program 1: Java
// Java program to demonstrate
// PrintStream print(Object) method

import java.io.*;

class GFG {
    public static void main(String[] args)
    {

        try {

            // Create a PrintStream instance
            PrintStream stream
                = new PrintStream(System.out);

            // Get the char[] object
            // to be printed in the stream
            char[] object = { 'G', 'e', 'e', 'k', 's',
                              'F', 'o', 'r',
                              'G', 'e', 'e', 'k', 's' };

            // print the object
            // to this stream using print() method
            // This will put the object in the stream
            // till it is printed on the console
            stream.print(object);

            stream.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Output:
GeeksForGeeks
Program 2: Java
// Java program to demonstrate
// PrintStream print(Object) method

import java.io.*;

class GFG {
    public static void main(String[] args)
    {

        try {

            // Create a PrintStream instance
            PrintStream stream
                = new PrintStream(System.out);

            // Get the String Object
            // to be printed in the stream
            String object = "GFG";

            // print the object
            // to this stream using print() method
            // This will put the object in the stream
            // till it is printed on the console
            stream.print(object);

            stream.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Output:
GFG
Comment