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:
import java.io.*;
class GFG {
public static void main(String[] args)
{
try {
PrintStream stream
= new PrintStream(System.out);
stream.write( 48 );
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);
stream.write( 65 );
stream.flush();
}
catch (Exception e) {
System.out.println(e);
}
}
}
|