public class DeferredFileOutputStream extends ThresholdingOutputStream
To build an instance, see DeferredFileOutputStream.Builder
.
This class originated in FileUpload processing. In this use case, you do not know in advance the size of the file being uploaded. If the file is small you want to store it in memory (for speed), but if the file is large you want to store it to file (to avoid memory issues).
Modifier and Type | Class and Description |
---|---|
static class |
DeferredFileOutputStream.Builder
Builds a new
DeferredFileOutputStream instance. |
Constructor and Description |
---|
DeferredFileOutputStream(int threshold,
java.io.File outputFile)
Deprecated.
|
DeferredFileOutputStream(int threshold,
int initialBufferSize,
java.io.File outputFile)
Deprecated.
|
DeferredFileOutputStream(int threshold,
int initialBufferSize,
java.lang.String prefix,
java.lang.String suffix,
java.io.File directory)
Deprecated.
|
DeferredFileOutputStream(int threshold,
java.lang.String prefix,
java.lang.String suffix,
java.io.File directory)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static DeferredFileOutputStream.Builder |
builder()
Constructs a new
DeferredFileOutputStream.Builder . |
void |
close()
Closes underlying output stream, and mark this as closed
|
byte[] |
getData()
Gets the data for this output stream as an array of bytes, assuming that the data has been retained in memory.
|
java.io.File |
getFile()
Gets either the output file specified in the constructor or the temporary file created or null.
|
boolean |
isInMemory()
Tests whether or not the data for this output stream has been retained in memory.
|
java.io.InputStream |
toInputStream()
Converts the current contents of this byte stream to an
InputStream . |
void |
writeTo(java.io.OutputStream outputStream)
Writes the data from this output stream to the specified output stream, after it has been closed.
|
flush, getByteCount, getThreshold, isThresholdExceeded, write, write, write
@Deprecated public DeferredFileOutputStream(int threshold, java.io.File outputFile)
builder()
, DeferredFileOutputStream.Builder
, and DeferredFileOutputStream.Builder.get()
threshold
- The number of bytes at which to trigger an event.outputFile
- The file to which data is saved beyond the threshold.@Deprecated public DeferredFileOutputStream(int threshold, int initialBufferSize, java.io.File outputFile)
builder()
, DeferredFileOutputStream.Builder
, and DeferredFileOutputStream.Builder.get()
threshold
- The number of bytes at which to trigger an event.initialBufferSize
- The initial size of the in memory buffer.outputFile
- The file to which data is saved beyond the threshold.@Deprecated public DeferredFileOutputStream(int threshold, int initialBufferSize, java.lang.String prefix, java.lang.String suffix, java.io.File directory)
builder()
, DeferredFileOutputStream.Builder
, and DeferredFileOutputStream.Builder.get()
threshold
- The number of bytes at which to trigger an event.initialBufferSize
- The initial size of the in memory buffer.prefix
- Prefix to use for the temporary file.suffix
- Suffix to use for the temporary file.directory
- Temporary file directory.@Deprecated public DeferredFileOutputStream(int threshold, java.lang.String prefix, java.lang.String suffix, java.io.File directory)
builder()
, DeferredFileOutputStream.Builder
, and DeferredFileOutputStream.Builder.get()
threshold
- The number of bytes at which to trigger an event.prefix
- Prefix to use for the temporary file.suffix
- Suffix to use for the temporary file.directory
- Temporary file directory.public static DeferredFileOutputStream.Builder builder()
DeferredFileOutputStream.Builder
.DeferredFileOutputStream.Builder
.public void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class ThresholdingOutputStream
java.io.IOException
- if an error occurs.public byte[] getData()
null
.null
if no such data is available.public java.io.File getFile()
If the constructor specifying the file is used then it returns that same output file, even when threshold has not been reached.
If constructor specifying a temporary file prefix/suffix is used then the temporary file created once the threshold is reached is returned If the
threshold was not reached then null
is returned.
null
if no such file exists.public boolean isInMemory()
true
if the data is available in memory; false
otherwise.public java.io.InputStream toInputStream() throws java.io.IOException
InputStream
. If the data for this output stream has been retained in memory, the returned
stream is backed by buffers of this
stream, avoiding memory allocation and copy, thus saving space and time.java.io.IOException
- if this stream is not yet closed or an error occurs.ByteArrayOutputStream.toInputStream()
public void writeTo(java.io.OutputStream outputStream) throws java.io.IOException
outputStream
- output stream to write to.java.lang.NullPointerException
- if the OutputStream is null
.java.io.IOException
- if this stream is not yet closed or an error occurs.Copyright © 2010 - 2023 Adobe. All Rights Reserved