Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2010 Robert "Unlogic" Olofsson (unlogic@unlogic.se).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser Public License v3
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/lgpl-3.0-standalone.html
 ******************************************************************************/

import java.io.IOException;
import java.io.Reader;
import java.io.Writer;

public class Main {
    public static void transfer(Reader reader, Writer writer) throws IOException {

        char[] buf = new char[8192];
        int count = 0;

        while ((count = reader.read(buf)) >= 0) {

            writer.write(buf, 0, count);
        }
        writer.flush();
    }
}