PrintStream write(int) method in Java with Examples
The write(int) method of PrintStream Class in Java is used to write the specified byte value on the stream. This byte value is specified using the ASCII value of the byte value passed as an integer value. This integer value is taken as a parameter.
Syntax:
public void write(int ascii)
Parameters: This method accepts a mandatory parameter ascii which is the ASCII value of the byte value to be written on the stream.
Return Value: This method do not returns any value.
Below methods illustrates the working of write(int) method:
Program 1:
// Java program to demonstrate // PrintStream write(int) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintStream instance PrintStream stream = new PrintStream(System.out); // Write the byte value '0' to this stream // using write() method // This will put the string in the stream // till it is printed on the console stream.write( 48 ); stream.flush(); } catch (Exception e) { System.out.println(e); } } } |
0
Program 2:
// Java program to demonstrate // PrintStream write(int) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintStream instance PrintStream stream = new PrintStream(System.out); // Write the byte value 'A' to this stream // using write() method // This will put the string in the stream // till it is printed on the console stream.write( 65 ); stream.flush(); } catch (Exception e) { System.out.println(e); } } } |
A
Recommended Posts:
- PrintStream print(int) method in Java with Examples
- PrintStream clearError() method in Java with Examples
- PrintStream setError() method in Java with Examples
- PrintStream checkError() method in Java with Examples
- PrintStream println() method in Java with Examples
- PrintStream println(int) method in Java with Examples
- PrintStream flush() method in Java with Examples
- PrintStream close() method in Java with Examples
- PrintStream append(CharSequence) method in Java with Examples
- PrintStream append(CharSequence, int, int) method in Java with Examples
- PrintStream println(Object) method in Java with Examples
- PrintStream println(boolean) method in Java with Examples
- PrintStream println(float) method in Java with Examples
- PrintStream println(long) method in Java with Examples
- PrintStream println(double) method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.