PrintWriter println(String) method in Java with Examples Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The println(String) method of PrintWriter Class in Java is used to print the specified String on the stream and then break the line. This String is taken as a parameter. Syntax: public void println(String string) Parameters: This method accepts a mandatory parameter string which is the String to be printed in the Stream. Return Value: This method do not returns any value. Below methods illustrates the working of println(String) method: Program 1: Java // Java program to demonstrate // PrintWriter println(String) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintWriter instance PrintWriter writer = new PrintWriter(System.out); // Get the String // to be printed in the stream String string = "GeeksForGeeks"; // print the string // to this writer using print() method // This will put the string in the stream // till it is printed on the console writer.println(string); writer.flush(); } catch (Exception e) { System.out.println(e); } } } Output: GeeksForGeeks Program 2: Java // Java program to demonstrate // PrintWriter println(String) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintWriter instance PrintWriter writer = new PrintWriter(System.out); // Get the String // to be printed in the stream String string = "GFG"; // print the string // to this writer using print() method // This will put the string in the stream // till it is printed on the console writer.println(string); writer.flush(); } catch (Exception e) { System.out.println(e); } } } Output: GFG Comment More infoAdvertise with us Next Article PrintStream println(String) method in Java with Examples K Kirti_Mangal Follow Improve Article Tags : Java Java-Functions Java-IO package Java-PrintWriter Practice Tags : Java Similar Reads PrintWriter print(String) method in Java with Examples 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 2 min read PrintStream println(String) method in Java with Examples The println(String) method of PrintStream Class in Java is used to print the specified String on the stream and then break the line. This String is taken as a parameter. Syntax: public void println(String string) Parameters: This method accepts a mandatory parameter string which is the String to be 2 min read PrintWriter println() method in Java with Examples The println() method of PrintWriter Class in Java is used to break the line in the stream. This method do not accepts any parameter or return any value. Syntax: public void println() Parameters: This method do not accepts any parameter. Return : This method do not returns any value. Below methods il 2 min read PrintStream print(String) method in Java with Examples The print(String) method of PrintStream 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 2 min read PrintWriter printf(String, Object) method in Java with Examples The printf(String, Object) method of PrintWriter Class in Java is used to print a formatted string in the stream. The string is formatted using specified format and arguments passed as the parameter. Syntax: public PrintWriter printf(String format, Object...args) Parameters: This method accepts two 2 min read PrintWriter println(int) method in Java with Examples The println(int) method of PrintWriter Class in Java is used to print the specified int value on the stream and then break the line. This int value is taken as a parameter. Syntax: public void println(int intValue) Parameters: This method accepts a mandatory parameter intValue which is the int value 2 min read Like