Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.io.CharArrayWriter;

public class Main {
    public static void main(String[] args) throws Exception {

        char[] ch = { 'A', 'B', 'C', 'D', 'E' };

        CharArrayWriter chw = new CharArrayWriter();

        // write character buffer to the writer
        chw.write(ch);

        // get buffered content as string
        String str = chw.toString();

        // print the string
        System.out.print(str);

    }
}