2 * Created on 06.09.2003
5 package net.sourceforge.phpdt.internal.ui.util;
7 import java.io.IOException;
8 import java.io.InputStream;
9 import java.io.OutputStream;
14 public class StreamUtil {
15 public static void transferStreams(InputStream source, OutputStream destination) throws IOException {
17 byte[] buffer = new byte[8192];
19 int bytesRead = source.read(buffer);
22 destination.write(buffer, 0, bytesRead);
27 } catch (IOException e) {
31 } catch (IOException e) {