Thursday, October 16, 2025
HomeLanguagesJavaStringWriter write(int) method in Java with Examples

StringWriter write(int) method in Java with Examples

The write(int) method of StringWriter Class in Java is used to write the specified byte value on the writer. 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 writer.

Return Value: This method does not returns any value.

Below programs illustrates the working of write(int) method:

Program 1:




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


Output:

0

Program 2:




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


Output:

A
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS