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) {

        CharArrayWriter chw = new CharArrayWriter();

        CharSequence csq = "java2s.com";

        // closes the stream
        chw.close();

        // append character sequence to the writer
        chw.append(csq);

        // prints out the character sequences
        System.out.println(chw.toString());

    }
}