A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/java/writer-writechar-method-in-java-with-examples/ below:

Writer write(char[]) method in Java with Examples

Writer write(char[]) method in Java with Examples

Last Updated : 11 Jul, 2025

The

write(char[])

method of

Writer

Class in Java is used to write the specified character array on the stream. This character array is taken as a parameter.


Syntax:
public void write(char[] charArray)
Parameters:

This method accepts a mandatory parameter

charArray

which is the character array to be written in the Stream.


Return Value:

This method do not returns any value.

Below methods illustrates the working of write(char[]) method:


Program 1: Java
// Java program to demonstrate
// Writer write(char[]) method

import java.io.*;

class GFG {
    public static void main(String[] args)
    {

        try {

            // Create a Writer instance
            Writer writer
                = new PrintWriter(System.out);

            // Get the character array
            // to be written in the stream
            char[] charArray = { 'G', 'e', 'e', 'k', 's',
                                 'F', 'o', 'r',
                                 'G', 'e', 'e', 'k', 's' };

            // Write the charArray
            // to this writer using write() method
            // This will put the charArray in the stream
            // till it is printed on the console
            writer.write(charArray);

            writer.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Program 2: Java
// Java program to demonstrate
// Writer write(char[]) method

import java.io.*;

class GFG {
    public static void main(String[] args)
    {

        try {

            // Create a Writer instance
            Writer writer
                = new PrintWriter(System.out);

            // Get the character array
            // to be written in the stream
            char[] charArray = { 'G', 'F', 'G' };

            // Write the charArray
            // to this writer using write() method
            // This will put the charArray in the stream
            // till it is printed on the console
            writer.write(charArray);

            writer.flush();
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4