The println(char[]) method of PrintStream Class in Java is used to print the specified character array on the stream and then break the line. This character array is taken as a parameter.
Syntax:
public void println(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 println(char[]) method:
Program 1:
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
PrintStream stream
= new PrintStream(System.out);
char [] charArray = { 'G' , 'e' , 'e' , 'k' , 's' ,
'F' , 'o' , 'r' ,
'G' , 'e' , 'e' , 'k' , 's' };
stream.println(charArray);
stream.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
|
Program 2:
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
PrintStream stream
= new PrintStream(System.out);
char [] charArray = { 'G' , 'F' , 'G' };
stream.println(charArray);
stream.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
|
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
31 Jan, 2019
Like Article
Save Article