|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.fileupload.util.Streams
public final class Streams
Utility class for working with streams.
Method Summary | |
---|---|
static java.lang.String |
asString(java.io.InputStream pStream)
This convenience method allows to read a FileItemStream 's
content into a string. |
static java.lang.String |
asString(java.io.InputStream pStream,
java.lang.String pEncoding)
This convenience method allows to read a FileItemStream 's
content into a string, using the given character encoding. |
static long |
copy(java.io.InputStream pInputStream,
java.io.OutputStream pOutputStream,
boolean pClose)
Copies the contents of the given InputStream
to the given OutputStream . |
static long |
copy(java.io.InputStream pIn,
java.io.OutputStream pOut,
boolean pClose,
byte[] pBuffer)
Copies the contents of the given InputStream
to the given OutputStream . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static long copy(java.io.InputStream pInputStream, java.io.OutputStream pOutputStream, boolean pClose) throws java.io.IOException
InputStream
to the given OutputStream
. Shortcut for
copy(pInputStream, pOutputStream, new byte[8192]);
pInputStream
- The input stream, which is being read.
It is guaranteed, that InputStream.close()
is called
on the stream.pOutputStream
- The output stream, to which data should
be written. May be null, in which case the input streams
contents are simply discarded.pClose
- True guarantees, that OutputStream.close()
is called on the stream. False indicates, that only
OutputStream.flush()
should be called finally.
java.io.IOException
- An I/O error occurred.public static long copy(java.io.InputStream pIn, java.io.OutputStream pOut, boolean pClose, byte[] pBuffer) throws java.io.IOException
InputStream
to the given OutputStream
.
pIn
- The input stream, which is being read.
It is guaranteed, that InputStream.close()
is called
on the stream.pOut
- The output stream, to which data should
be written. May be null, in which case the input streams
contents are simply discarded.pClose
- True guarantees, that OutputStream.close()
is called on the stream. False indicates, that only
OutputStream.flush()
should be called finally.pBuffer
- Temporary buffer, which is to be used for
copying data.
java.io.IOException
- An I/O error occurred.public static java.lang.String asString(java.io.InputStream pStream) throws java.io.IOException
FileItemStream
's
content into a string. The platform's default character encoding
is used for converting bytes into characters.
pStream
- The input stream to read.
java.io.IOException
- An I/O error occurred.asString(InputStream, String)
public static java.lang.String asString(java.io.InputStream pStream, java.lang.String pEncoding) throws java.io.IOException
FileItemStream
's
content into a string, using the given character encoding.
pStream
- The input stream to read.pEncoding
- The character encoding, typically "UTF-8".
java.io.IOException
- An I/O error occurred.asString(InputStream)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |