public final class Streams extends Object
Modifier and Type | Method and Description |
---|---|
static String |
asString(InputStream pStream)
This convenience method allows to read a
FileItemStream 's
content into a string. |
static String |
asString(InputStream pStream,
String pEncoding)
This convenience method allows to read a
FileItemStream 's
content into a string, using the given character encoding. |
static String |
checkFileName(String pFileName)
Checks, whether the given file name is valid in the sense,
that it doesn't contain any NUL characters.
|
static long |
copy(InputStream pInputStream,
OutputStream pOutputStream,
boolean pClose)
Copies the contents of the given
InputStream
to the given OutputStream . |
static long |
copy(InputStream pIn,
OutputStream pOut,
boolean pClose,
byte[] pBuffer)
Copies the contents of the given
InputStream
to the given OutputStream . |
public static long copy(InputStream pInputStream, OutputStream pOutputStream, boolean pClose) throws 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.IOException
- An I/O error occurred.public static long copy(InputStream pIn, OutputStream pOut, boolean pClose, byte[] pBuffer) throws 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.IOException
- An I/O error occurred.public static String asString(InputStream pStream) throws 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.IOException
- An I/O error occurred.asString(InputStream, String)
public static String asString(InputStream pStream, String pEncoding) throws 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".IOException
- An I/O error occurred.asString(InputStream)
public static String checkFileName(String pFileName)
InvalidFileNameException
is raised.pFileName
- The file name to checkInvalidFileNameException
- The file name was found to be invalid.Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.