Java.io.Printstream Class in Java | Set 2 Last Updated : 01 May, 2024 Comments Improve Suggest changes Like Article Like Report Java.io.Printstream Class in Java | Set 1More Methods: PrintStream printf(Locale l, String format, Object... args) : A convenience method to write a formatted string to this output stream using the specified format string and arguments. Syntax :public PrintStream printf(Locale l, String format, Object... args)Parameters:l - The locale to apply during formatting. If l is null then no localization is applied.format - A format string as described in Format string syntaxargs - Arguments referenced by the format specifiers in the format string.Returns:This output streamThrows:IllegalFormatException NullPointerException Java //Java program to demonstrate printf method import java.io.*; import java.util.Locale; class PrintStreamDemo { public static void main(String[] args) { String s = "for"; // create printstream object PrintStream printStream = new PrintStream(System.out); // illustrating printf(Locale l, String format, Object... args) method printStream.printf(Locale.US, "Geeks%sGeeks", s); } } Output:GeeksforGeeksPrintStream printf(String format, Object... args) : A convenience method to write a formatted string to this output stream using the specified format string and arguments. Syntax :public PrintStream printf(String format, Object... args)Parameters:format - A format string as described in Format string syntaxargs - Arguments referenced by the format specifiers in the format string.Returns:This output streamThrows:IllegalFormatException NullPointerException Java //Java program to demonstrate printf(String format, Object... args) method import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { String s = "for"; // create printstream object PrintStream obj= new PrintStream(System.out); // illustrating printf(String format, Object... args) method obj.printf("Geeks%sGeeks", s); } } Output:GeeksforGeeksvoid println(): Terminates the current line by writing the line separator string. Syntax :public void println() Java //Java program to demonstrate println() methods import java.io.PrintStream; class PrintStreamDemo { public static void main(String[] args) { PrintStream obj = new PrintStream(System.out); //illustrating println(); obj.println("GeeksforGeeks"); } } Output:GeeksforGeeksvoid println(boolean x): Prints a boolean and then terminate the line. Syntax :public void println(boolean x) Java //Java program to demonstrate println(boolean) method import java.io.*; class PrintStreamDemo { public static void main(String[] args) { // create printstream object PrintStream obj = new PrintStream(System.out); //illustrating println(boolean) method obj.println(true); // flush the stream obj.flush(); } } Output:truevoid println(char x): Prints a character and then terminate the line. Syntax :public void println(char x) Java //Java program to demonstrate println(char x) method import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { char c = 'g'; // create printstream object PrintStream obj = new PrintStream(System.out); // illustrating println(char x) obj.println(c); // flush the stream obj.flush(); } } Output:gvoid println(char[] x): Prints an array of characters and then terminate the line. Syntax :public void println(char[] x) Java //Java program to demonstrate println(char[] x) method import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { char[] c = {'G', 'E', 'E','K'}; // create printstream object PrintStream obj = new PrintStream(System.out); // illustrating println(char[] x) obj.println(c); // flush the stream obj.flush(); } } Output:GEEKvoid println(double x): Prints a double and then terminate the line. Syntax :public void println(double x) Java //Java program to demonstrate println(double x) method import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { double c = 5.42762; // create printstream object PrintStream obj = new PrintStream(System.out); // illustrating println(double x) obj.println(c); // flush the stream obj.flush(); } } Output:5.42762void println(float x): Prints a float and then terminate the line. Syntax :public void println(float x) Java //Java program to demonstrate println(float x) method import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { float c = 5.168502f; // create printstream object PrintStream obj = new PrintStream(System.out); // illustrating println(float x) obj.println(c); // flush the stream obj.flush(); } } Output:5.168502fvoid println(int x): Prints an integer and then terminate the line. Syntax :public void println(boolean x) Java //Java program to demonstrate println(int x) method import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { int c = 5; // create printstream object PrintStream obj = new PrintStream(System.out); // illustrating println(int x) obj.println(c); // flush the stream obj.flush(); } } Output:5void println(long x): Prints a long and then terminate the line. Syntax :public void println(long x) Java //Java program to demonstrate println(long x) method import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { long c = 123456789l; try { // create printstream object PrintStream obj= new PrintStream(System.out); // illustrating println(long x) obj.println(c); // flush the stream obj.flush(); } catch (Exception ex) { ex.printStackTrace(); } } } Output:123456789void println(Object x) :Prints an Object and then terminate the line. Syntax :public void println(Object x) Java //Java program to demonstrate println(Object x) method import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { // create printstream object PrintStream obj = new PrintStream(System.out); //illustrating println(Object X) obj.println(obj); // flush the stream obj.flush(); } } Output:java.io.PrintStream@15db9742void println(String x) :Prints a String and then terminate the line. Syntax :public void println(boolean x) Java import java.io.*; //Java program to demonstrate println(String x) method public class PrintStreamDemo { public static void main(String[] args) { String c = "GeeksforGeeks"; // create printstream object PrintStream ps = new PrintStream(System.out); // illustrating println(String x) ps.println(c); // flush the stream ps.flush(); } } Output:GeeksforGeeksprotected void setError() :Sets the error state of the stream to true. Syntax :public void println(String x) Java //Java program to demonstrate setError() method import java.io.*; public class PrintStreamDemo extends PrintStream { public PrintStreamDemo(OutputStream out) { super(out); } public static void main(String[] args) { byte c[] = {65, 66, 67, 68, 69, 70, 71}; // create printstream object PrintStreamDemo obj = new PrintStreamDemo(System.out); // illustrating write() method obj.write(c, 1, 3); // flush the stream obj.flush(); //illustrating setError() method obj.setError(); } } Output:BCDvoid write(byte[] buf, int off, int len) :Writes len bytes from the specified byte array starting at offset off to this stream. Syntax :public void write(byte[] buf, int off, int len)Overrides:write in class FilterOutputStreamParameters:buf - A byte arrayoff - Offset from which to start taking byteslen - Number of bytes to write Java //Java program to demonstrate write(int b) method import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { byte c = 65; // create printstream object PrintStream obj = new PrintStream(System.out); //illustrating write(int b) obj.write(c); // flush the stream obj.flush(); } } Output:BCDvoid write(int b) :Writes the specified byte to this stream. Syntax :public void write(int b)Overrides:write in class FilterOutputStreamParameters:b - The byte to be written Java //Java program to demonstrate write(int b) method import java.io.*; public class PrintStreamDemo { public static void main(String[] args) { byte c = 65; // create printstream object PrintStream obj = new PrintStream(System.out); //illustrating write(int b) obj.write(c); // flush the stream obj.flush(); } } Output:A Comment More infoAdvertise with us Next Article Java.io.Printstream Class in Java | Set 2 N Nishant Sharma Improve Article Tags : Java Practice Tags : Java Similar Reads Java.io.Printstream Class in Java | Set 1 A PrintStream adds functionality to another output stream, namely the ability to print representations of various data values conveniently. Unlike other output streams, a PrintStream never throws an IOException; instead, exceptional situations merely set an internal flag that can be tested via the c 5 min read Java.io.PrintWriter class in Java | Set 2 Java.io.PrintWriter class in Java | Set 1 More methods: PrintWriter printf(Locale l, String format, Object... args) : A convenience method to write a formatted string to this writer using the specified format string and arguments. Syntax :public PrintWriter printf(Locale l, String format, Object... 7 min read Java.io.ObjectInputStream Class in Java | Set 2 Java.io.ObjectInputStream Class in Java | Set 1 Note : Java codes mentioned in this article won't run on Online IDE as the file used in the code doesn't exists online. So, to verify the working of the codes, you can copy them to your System and can run it over there. More Methods of ObjectInputStrea 6 min read Java.io.PrintWriter class in Java | Set 1 Java PrintWriter class gives Prints formatted representations of objects to a text-output stream. It implements all of the print methods found in PrintStream. It does not contain methods for writing raw bytes, for which a program should use unencoded byte streams. Unlike the PrintStream class, if au 5 min read Java.io.ObjectInputStream Class in Java | Set 1 ObjectInputStream Class deserializes the primitive data and objects previously written by ObjectOutputStream. Both ObjectOutputStream and ObjectInputStream are used as it provides storage for graphs of object.It ensures that the object it is working for, matches the classes of JVM i.e Java Virtual M 9 min read Java.io.PipedInputStream class in Java Pipes in IO provides a link between two threads running in JVM at the same time. So, Pipes are used both as source or destination. PipedInputStream is also piped with PipedOutputStream. So, data can be written using PipedOutputStream and can be written using PipedInputStream.But, using both threads 5 min read Java.io.OutputStream class in Java This abstract class is the superclass of all classes representing an output stream of bytes. An output stream accepts output bytes and sends them to some sink. Applications that need to define a subclass of OutputStream must always provide at least a method that writes one byte of output. Constructo 2 min read Java.io.ObjectOutputStream Class in Java | Set 1 An ObjectOutputStream writes primitive data types and graphs of Java objects to an OutputStream. The objects can be read (reconstituted) using an ObjectInputStream. Persistent storage of objects can be accomplished by using a file for the stream. Only objects that support the java.io.Serializable in 9 min read Java.io.Writer class in Java This abstract class for writing to character streams. The only methods that a subclass must implement are write(char[], int, int), flush(), and close(). Most subclasses, however, will override some of the methods defined here in order to provide higher efficiency, additional functionality, or both. 4 min read Java.io.LineNumberInputStream Class in Java java.io.LineNumberInputStream class is simply an extension of input stream providing a extra facility to keep the record of current line number. Line is a sequence of bytes ending with : '\r' i.e. a carriage return character or a newline character : '\n', or a linefeed character following the carria 11 min read Like