Saturday, May 16, 2026
HomeLanguagesJavaPrintWriter write(int) method in Java with Examples

PrintWriter write(int) method in Java with Examples

The write(int) method of PrintWriter Class in Java is used to write the specified character on the stream. This character is specified using the ASCII value of the character 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 character 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
// PrintWriter write(int) method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a PrintWriter instance
            PrintWriter writer
                = new PrintWriter(System.out);
  
            // Write the character '0' to this writer
            // using write() method
            // This will put the string in the stream
            // till it is printed on the console
            writer.write(48);
  
            writer.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

0

Program 2:




// Java program to demonstrate
// PrintWriter write(int) method
  
import java.io.*;
  
class GFG {
    public static void main(String[] args)
    {
  
        try {
  
            // Create a PrintWriter instance
            PrintWriter writer
                = new PrintWriter(System.out);
  
            // Write the character 'A' to this writer
            // using write() method
            // This will put the string in the stream
            // till it is printed on the console
            writer.write(65);
  
            writer.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

A
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS