home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-05-23 | 318 b | 19 lines | [TEXT/CWIE] |
- package au.com.peter.libraries;
-
- import java.io.*;
-
- public class Streams {
-
- public static void CopyStream( InputStream in, OutputStream out ) throws IOException {
- byte[] data = new byte[2048];
- int c;
-
- do {
- c = in.read( data );
- if ( c > 0 ) {
- out.write( data, 0, c );
- }
- } while ( c >= 0 );
- }
- }
-