// Created by plusminus on 19:14:08 - 20.10.2008 package com.mapbox.mapboxsdk.tileprovider.util; import android.util.Log; import java.io.Closeable; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; public class StreamUtils { public static final int IO_BUFFER_SIZE = 8 * 1024; /** * This is a utility class with only static members. */ private StreamUtils() { } /** * Copy the content of the input stream into the output stream, using a temporary byte array * buffer whose size is defined by {@link #IO_BUFFER_SIZE}. * * @param in The input stream to copy from. * @param out The output stream to copy to. * @return the total length copied * @throws IOException If any error occurs during the copy. */ public static long copy(final InputStream in, final OutputStream out) throws IOException { long length = 0; final byte[] b = new byte[IO_BUFFER_SIZE]; int read; while ((read = in.read(b)) != -1) { out.write(b, 0, read); length += read; } return length; } /** * Closes the specified stream. * * @param stream The stream to close. */ public static void closeStream(final Closeable stream) { if (stream != null) { try { stream.close(); } catch (final IOException e) { Log.e(TAG, "Could not close stream " + e); } } } private static final String TAG = "StreamUtils"; }