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
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
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
|