Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: LGPL 

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public class Main {
    public static void write(InputStream in, OutputStream out) throws IOException {
        int read = 0;
        while ((read = in.read()) != -1) {
            out.write(read);
        }
        in.close();
        out.close();
        out.flush();
    }
}