Package oracle.stellent.ridc.common.util
Class StreamUtil
java.lang.Object
oracle.stellent.ridc.common.util.StreamUtil
Utility methods for working with streams
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic void
closeReader
(Reader reader) Close a reader, ignoring any exceptions that occur during the closestatic void
closeStream
(InputStream stream) Close a stream, ignoring any exceptions that occur during the closestatic void
closeStream
(OutputStream stream) Close a stream, ignoring any exceptions that occur during the closestatic void
closeWriter
(Writer writer) Close a writer, ignoring any exceptions that occur during the closestatic void
copyReader
(Reader reader, Writer writer, boolean closeInput, boolean closeOutput) Copy the contents of the Reader to the Writerstatic void
copyStream
(InputStream inputStream, OutputStream outputStream, boolean closeInput, boolean closeOutput) Copy the contents of the inputstream to the outputstreamstatic String
getStringFromFile
(File file) Convert the contents of the file into a stringstatic String
getStringFromFile
(File file, String encoding) Convert the contents of the file into a stringstatic String
getStringFromStream
(InputStream stream) Read the stream and create a string using the default system encodingstatic String
getStringFromStream
(InputStream stream, String encoding) Read the stream and create a string from the contents, using the given encodingstatic String
getStringFromStreamAlternative
(InputStream stream, String encoding) Read the stream and create a string from the contents, using the given encodingstatic String
readLine
(InputStream inputStream, String charset) This code copied from HttpClient.static byte[]
readRawLine
(InputStream inputStream) This code copied from HttpClient.static byte[]
tryRead
(InputStream inputStream, int length) Try and read from the stream a specific number of bytes and return in byte[]
-
Constructor Details
-
StreamUtil
public StreamUtil()
-
-
Method Details
-
copyStream
public static void copyStream(InputStream inputStream, OutputStream outputStream, boolean closeInput, boolean closeOutput) throws IOException Copy the contents of the inputstream to the outputstream- Parameters:
inputStream
- the inputstream to readoutputStream
- the outputstream to write tocloseInput
- true to close the inputstream on completioncloseOutput
- true to close the outputstream on completion- Throws:
IOException
- if an IO error occurs
-
copyReader
public static void copyReader(Reader reader, Writer writer, boolean closeInput, boolean closeOutput) throws IOException Copy the contents of the Reader to the Writer- Parameters:
reader
- the Reader to readwriter
- the Writer to write tocloseInput
- true to close the inputstream on completioncloseOutput
- true to close the outputstream on completion- Throws:
IOException
- if an IO error occurs
-
closeStream
Close a stream, ignoring any exceptions that occur during the close- Parameters:
stream
- the stream to close
-
closeStream
Close a stream, ignoring any exceptions that occur during the close- Parameters:
stream
- the stream to close
-
closeReader
Close a reader, ignoring any exceptions that occur during the close- Parameters:
reader
- the reader to close
-
closeWriter
Close a writer, ignoring any exceptions that occur during the close- Parameters:
writer
- the writer to close
-
getStringFromFile
Convert the contents of the file into a string- Parameters:
file
- the file to read- Returns:
- a string containing the file contents, using the default character encoding on the JVM
- Throws:
IOException
-
getStringFromFile
Convert the contents of the file into a string- Parameters:
file
- the file to readencoding
- the character encoding to use- Returns:
- a string containing the file contents, using the default character encoding on the JVM
- Throws:
IOException
-
getStringFromStream
Read the stream and create a string using the default system encoding- Parameters:
stream
- the stream to read- Returns:
- a string containing the streams contents
- Throws:
IOException
-
getStringFromStream
Read the stream and create a string from the contents, using the given encoding- Parameters:
stream
- the inputstream to readencoding
- the encoding to use- Returns:
- the string containing the stream contents
- Throws:
IOException
-
getStringFromStreamAlternative
public static String getStringFromStreamAlternative(InputStream stream, String encoding) throws IOException Read the stream and create a string from the contents, using the given encoding- Parameters:
stream
- the inputstream to readencoding
- the encoding to use- Returns:
- the string containing the stream contents
- Throws:
IOException
-
readRawLine
This code copied from HttpClient. Return byte array from an (unchunked) input stream. Stop reading when "\n" terminator encountered If the stream ends before the line terminator is found, the last part of the string will still be returned. If no input data available,null
is returned.- Parameters:
inputStream
- the stream to read from- Returns:
- a byte array from the stream
- Throws:
IOException
- if an I/O problem occurs
-
readLine
This code copied from HttpClient.Read up to "\n" from an (unchunked) input stream. If the stream ends before the line terminator is found, the last part of the string will still be returned. If no input data available,
null
is returned.- Parameters:
inputStream
- the stream to read fromcharset
- charset of HTTP protocol elements- Returns:
- a line from the stream
- Throws:
IOException
- if an I/O problem occurs- Since:
- 3.0
-
tryRead
Try and read from the stream a specific number of bytes and return in byte[]- Parameters:
inputStream
- the inputstream to readlength
- the number of bytes we are hoping to read- Returns:
- the byte[] containing up to length bytes read from the stream
- Throws:
IOException
-