All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.espresso4j.espresso.internal.IoUtils Maven / Gradle / Ivy

The newest version!
package io.github.espresso4j.espresso.internal;

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

public class IoUtils {

    public static void copyStream(InputStream in, OutputStream out) throws IOException {
        byte[] buffer = new byte[4096];
        int size = 0;
        while ((size = in.read(buffer)) > 0) {
            out.write(buffer, 0 , size);
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy