public class

StreamUtils

extends Object
java.lang.Object
   ↳ xades4j.utils.StreamUtils

Class Overview

Utility methods for streams.

Summary

Public Methods
static void readWrite(InputStream is, OutputStream os)
Reads the content of an input stream and writes it into an output stream.
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public static void readWrite (InputStream is, OutputStream os)

Reads the content of an input stream and writes it into an output stream. The copy is made in chunks of 1 KB.

Parameters
is the input
os the output
Throws
IOException thrown by the read and write methods of the streams