Open In App

PrintStream print(char[]) method in Java with Examples

Last Updated : 29 Jan, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The print(char[]) method ofPrintStream Class in Java is used to print the specified character array on the stream. This character array is taken as a parameter. Syntax:
public void print(char[] charArray)
Parameters: This method accepts a mandatory parameter charArray which is the character array to be printed in the Stream. Return Value: This method do not returns any value. Exceptions: This method returns NullPointerException if the specified charArray() is null. Below methods illustrates the working of print(char[]) method: Program 1: Java
// Java program to demonstrate
// PrintStream print(char[]) 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 character array
            // to be printed in the stream
            char[] charArray = { 'G', 'e', 'e', 'k', 's',
                                 'F', 'o', 'r',
                                 'G', 'e', 'e', 'k', 's' };

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

            stream.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Output:
GeeksForGeeks
Program 2: Java
// Java program to demonstrate
// PrintStream print(char[]) 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 character array
            // to be printed in the stream
            char[] charArray = { 'G', 'F', 'G' };

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

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

Next Article
Practice Tags :

Similar Reads

  翻译: