Package org.elasticsearch.common.io
Class Streams
- java.lang.Object
-
- org.elasticsearch.common.io.Streams
-
public abstract class Streams extends java.lang.ObjectSimple utility methods for file and stream copying. All copy methods use a block size of 4096 bytes, and close all affected streams when done.Mainly for use within the framework, but also useful for application code.
-
-
Field Summary
Fields Modifier and Type Field Description static intBUFFER_SIZE
-
Constructor Summary
Constructors Constructor Description Streams()
-
Method Summary
Modifier and Type Method Description static voidcopy(byte[] in, java.io.OutputStream out)Copy the contents of the given byte array to the given OutputStream.static longcopy(java.io.InputStream in, java.io.OutputStream out)static longcopy(java.io.InputStream in, java.io.OutputStream out, byte[] buffer)Copy the contents of the given InputStream to the given OutputStream.static intcopy(java.io.Reader in, java.io.Writer out)Copy the contents of the given Reader to the given Writer.static voidcopy(java.lang.String in, java.io.Writer out)Copy the contents of the given String to the given output Writer.static java.lang.StringcopyToString(java.io.Reader in)Copy the contents of the given Reader into a String.static BytesStreamflushOnCloseStream(BytesStream os)Wraps the givenBytesStreamin aStreamOutputthat simply flushes when close is called.static java.util.List<java.lang.String>readAllLines(java.io.InputStream input)static voidreadAllLines(java.io.InputStream input, java.util.function.Consumer<java.lang.String> consumer)static intreadFully(java.io.InputStream reader, byte[] dest)static intreadFully(java.io.InputStream reader, byte[] dest, int offset, int len)static intreadFully(java.io.Reader reader, char[] dest)static intreadFully(java.io.Reader reader, char[] dest, int offset, int len)
-
-
-
Field Detail
-
BUFFER_SIZE
public static final int BUFFER_SIZE
- See Also:
- Constant Field Values
-
-
Method Detail
-
copy
public static long copy(java.io.InputStream in, java.io.OutputStream out) throws java.io.IOException- Throws:
java.io.IOException
-
copy
public static long copy(java.io.InputStream in, java.io.OutputStream out, byte[] buffer) throws java.io.IOExceptionCopy the contents of the given InputStream to the given OutputStream. Closes both streams when done.- Parameters:
in- the stream to copy fromout- the stream to copy to- Returns:
- the number of bytes copied
- Throws:
java.io.IOException- in case of I/O errors
-
copy
public static void copy(byte[] in, java.io.OutputStream out) throws java.io.IOExceptionCopy the contents of the given byte array to the given OutputStream. Closes the stream when done.- Parameters:
in- the byte array to copy fromout- the OutputStream to copy to- Throws:
java.io.IOException- in case of I/O errors
-
copy
public static int copy(java.io.Reader in, java.io.Writer out) throws java.io.IOExceptionCopy the contents of the given Reader to the given Writer. Closes both when done.- Parameters:
in- the Reader to copy fromout- the Writer to copy to- Returns:
- the number of characters copied
- Throws:
java.io.IOException- in case of I/O errors
-
copy
public static void copy(java.lang.String in, java.io.Writer out) throws java.io.IOExceptionCopy the contents of the given String to the given output Writer. Closes the write when done.- Parameters:
in- the String to copy fromout- the Writer to copy to- Throws:
java.io.IOException- in case of I/O errors
-
copyToString
public static java.lang.String copyToString(java.io.Reader in) throws java.io.IOExceptionCopy the contents of the given Reader into a String. Closes the reader when done.- Parameters:
in- the reader to copy from- Returns:
- the String that has been copied to
- Throws:
java.io.IOException- in case of I/O errors
-
readFully
public static int readFully(java.io.Reader reader, char[] dest) throws java.io.IOException- Throws:
java.io.IOException
-
readFully
public static int readFully(java.io.Reader reader, char[] dest, int offset, int len) throws java.io.IOException- Throws:
java.io.IOException
-
readFully
public static int readFully(java.io.InputStream reader, byte[] dest) throws java.io.IOException- Throws:
java.io.IOException
-
readFully
public static int readFully(java.io.InputStream reader, byte[] dest, int offset, int len) throws java.io.IOException- Throws:
java.io.IOException
-
readAllLines
public static java.util.List<java.lang.String> readAllLines(java.io.InputStream input) throws java.io.IOException- Throws:
java.io.IOException
-
readAllLines
public static void readAllLines(java.io.InputStream input, java.util.function.Consumer<java.lang.String> consumer) throws java.io.IOException- Throws:
java.io.IOException
-
flushOnCloseStream
public static BytesStream flushOnCloseStream(BytesStream os)
Wraps the givenBytesStreamin aStreamOutputthat simply flushes when close is called.
-
-