public final class Streams
extends java.lang.Object
| Modifier and Type | Field and Description | 
|---|---|
static int | 
DEFAULT_BUFFER_SIZE
Default buffer size for use in
  
copy(InputStream, OutputStream, boolean). | 
| Modifier and Type | Method and Description | 
|---|---|
static java.lang.String | 
asString(java.io.InputStream inputStream)
This convenience method allows to read a
  
FileItemStream's
 content into a string. | 
static java.lang.String | 
asString(java.io.InputStream inputStream,
        java.lang.String encoding)
This convenience method allows to read a
  
FileItemStream's
 content into a string, using the given character encoding. | 
static java.lang.String | 
checkFileName(java.lang.String fileName)
Checks, whether the given file name is valid in the sense,
 that it doesn't contain any NUL characters. 
 | 
static long | 
copy(java.io.InputStream inputStream,
    java.io.OutputStream outputStream,
    boolean closeOutputStream)
Copies the contents of the given  
InputStream
 to the given OutputStream. | 
static long | 
copy(java.io.InputStream inputStream,
    java.io.OutputStream outputStream,
    boolean closeOutputStream,
    byte[] buffer)
Copies the contents of the given  
InputStream
 to the given OutputStream. | 
public static final int DEFAULT_BUFFER_SIZE
copy(InputStream, OutputStream, boolean).public static long copy(java.io.InputStream inputStream,
                        java.io.OutputStream outputStream,
                        boolean closeOutputStream)
                 throws java.io.IOException
InputStream
 to the given OutputStream. Shortcut for
 copy(pInputStream, pOutputStream, new byte[8192]);
inputStream - The input stream, which is being read.
 It is guaranteed, that InputStream.close() is called
 on the stream.outputStream - The output stream, to which data should
 be written. May be null, in which case the input streams
 contents are simply discarded.closeOutputStream - 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 inputStream,
                        java.io.OutputStream outputStream,
                        boolean closeOutputStream,
                        byte[] buffer)
                 throws java.io.IOException
InputStream
 to the given OutputStream.inputStream - The input stream, which is being read.
   It is guaranteed, that InputStream.close() is called
   on the stream.outputStream - The output stream, to which data should
   be written. May be null, in which case the input streams
   contents are simply discarded.closeOutputStream - True guarantees, that OutputStream.close()
   is called on the stream. False indicates, that only
   OutputStream.flush() should be called finally.buffer - 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 inputStream)
                                 throws java.io.IOException
FileItemStream's
 content into a string. The platform's default character encoding
 is used for converting bytes into characters.inputStream - 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 inputStream,
                                        java.lang.String encoding)
                                 throws java.io.IOException
FileItemStream's
 content into a string, using the given character encoding.inputStream - The input stream to read.encoding - The character encoding, typically "UTF-8".java.io.IOException - An I/O error occurred.asString(InputStream)public static java.lang.String checkFileName(java.lang.String fileName)
InvalidFileNameException is raised.fileName - The file name to checkInvalidFileNameException - The file name was found to be invalid.Copyright © 2010 - 2023 Adobe. All Rights Reserved