StreamContainer

Inheritance: java.lang.Object, com.aspose.imaging.DisposableObject

All Implemented Interfaces: com.aspose.internal.interfaces.ISynchronizable

public class StreamContainer extends DisposableObject implements ISynchronizable

Represents stream container which contains the stream and provides stream processing routines.

Constructors

ConstructorDescription
StreamContainer(InputStream stream)Initializes a new instance of the StreamContainer class.
StreamContainer(System.IO.Stream stream)Initializes a new instance of the StreamContainer class.
StreamContainer(InputStream stream, boolean disposeStream)Initializes a new instance of the StreamContainer class.
StreamContainer(System.IO.Stream stream, boolean disposeStream)Initializes a new instance of the StreamContainer class.

Fields

FieldDescription
READ_WRITE_BYTES_COUNTSpecifies read and write bytes count when reading sequentially.

Methods

MethodDescription
to_Stream(StreamContainer streamContainer)Performs an explicit conversion from com.aspose.imaging.StreamContainer to System.IO.Stream.
getSyncRoot()Gets an object that can be used to synchronize access to the synchronized resource.
getPosition()Gets or sets the current position within the stream.
setPosition(long value)Gets or sets the current position within the stream.
getStream()Gets the data stream.
isStreamDisposedOnClose()Gets a value indicating whether this stream is disposed on close.
getLength()Gets or sets the stream length in bytes.
setLength(long value)Gets or sets the stream length in bytes.
canRead()Gets a value indicating whether stream supports reading.
canSeek()Gets a value indicating whether stream supports seeking.
canWrite()Gets a value indicating whether stream supports writing.
flush()Clears all buffers for this stream and causes any buffered data to be written to the underlying device.
write(byte[] bytes)Writes all of the specified bytes to the stream.
writeByte(byte value)Writes a byte to the current position in the stream and advances the position within the stream by one byte.
read(byte[] bytes)Reads bytes to fill the specified bytes buffer.
toBytes()Converts the stream data to the byte array.
toBytes(long position, long bytesCount)Converts the stream data to the byte array.
read(byte[] buffer, int offset, int count)Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
readByte()Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.
seek(long offset, int origin)Sets the position within the current stream.
seekBegin()Sets the stream position to the beginning of the stream.
write(byte[] buffer, int offset, int count)Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
save(OutputStream destinationStream)Saves (copies) the stream’s data to the specified stream.
save(OutputStream destinationStream, int bufferSize)Saves (copies) all the stream’s data to the specified stream.
save(OutputStream destinationStream, int bufferSize, long length)Saves (copies) the stream’s data to the specified stream.
save(String filePath)Saves (copies) the stream’s data to the specified stream.
save(String filePath, int bufferSize)Saves (copies) the stream’s data to the specified stream.
save(String filePath, int bufferSize, long length)Saves (copies) the stream’s data to the specified stream.
writeTo(StreamContainer streamContainer)Copies the contained data to another StreamContainer.
writeTo(StreamContainer streamContainer, long length)Copies the contained data to another StreamContainer.

StreamContainer(InputStream stream)

public StreamContainer(InputStream stream)

Initializes a new instance of the StreamContainer class.

Parameters:

ParameterTypeDescription
streamjava.io.InputStreamThe stream.

StreamContainer(System.IO.Stream stream)

public StreamContainer(System.IO.Stream stream)

Initializes a new instance of the StreamContainer class.

Parameters:

ParameterTypeDescription
streamcom.aspose.ms.System.IO.StreamThe stream.

StreamContainer(InputStream stream, boolean disposeStream)

public StreamContainer(InputStream stream, boolean disposeStream)

Initializes a new instance of the StreamContainer class.

Parameters:

ParameterTypeDescription
streamjava.io.InputStreamThe data stream.
disposeStreambooleanif set to true the stream will be disposed when container is disposed.

StreamContainer(System.IO.Stream stream, boolean disposeStream)

public StreamContainer(System.IO.Stream stream, boolean disposeStream)

Initializes a new instance of the StreamContainer class.

Parameters:

ParameterTypeDescription
streamcom.aspose.ms.System.IO.StreamThe data stream.
disposeStreambooleanif set to true the stream will be disposed when container is disposed.

READ_WRITE_BYTES_COUNT

public static final int READ_WRITE_BYTES_COUNT

Specifies read and write bytes count when reading sequentially.

to_Stream(StreamContainer streamContainer)

public static System.IO.Stream to_Stream(StreamContainer streamContainer)

Performs an explicit conversion from com.aspose.imaging.StreamContainer to System.IO.Stream.

Parameters:

ParameterTypeDescription
streamContainerStreamContainerThe stream container.

Returns: com.aspose.ms.System.IO.Stream - The result of the conversion.

getSyncRoot()

public Object getSyncRoot()

Gets an object that can be used to synchronize access to the synchronized resource.

Value: The object that can be used to synchronize access to the synchronized resource.

Returns: java.lang.Object

getPosition()

public long getPosition()

Gets or sets the current position within the stream. This value represents offset from the starting stream position passed in the StreamContainer constructor.

Value: The current stream position.

Returns: long

setPosition(long value)

public void setPosition(long value)

Gets or sets the current position within the stream. This value represents offset from the starting stream position passed in the StreamContainer constructor.

Value: The current stream position.

Parameters:

ParameterTypeDescription
valuelong

getStream()

public InputStream getStream()

Gets the data stream.

Value: The data stream.

Returns: java.io.InputStream

isStreamDisposedOnClose()

public boolean isStreamDisposedOnClose()

Gets a value indicating whether this stream is disposed on close.

Value: true if stream is disposed on close; otherwise, false.

Returns: boolean

getLength()

public long getLength()

Gets or sets the stream length in bytes. This value is less than the System.IO.Stream.Length by the starting stream position passed in the StreamContainer constructor.

Value: The stream length.

Returns: long

setLength(long value)

public void setLength(long value)

Gets or sets the stream length in bytes. This value is less than the System.IO.Stream.Length by the starting stream position passed in the StreamContainer constructor.

Value: The stream length.

Parameters:

ParameterTypeDescription
valuelong

canRead()

public boolean canRead()

Gets a value indicating whether stream supports reading.

Value: true if stream supports reading; otherwise, false.

Returns: boolean

canSeek()

public boolean canSeek()

Gets a value indicating whether stream supports seeking.

Value: true if stream supports seeking; otherwise, false.

Returns: boolean

canWrite()

public boolean canWrite()

Gets a value indicating whether stream supports writing.

Value: true if stream supports writing; otherwise, false.

Returns: boolean

flush()

public void flush()

Clears all buffers for this stream and causes any buffered data to be written to the underlying device.

write(byte[] bytes)

public void write(byte[] bytes)

Writes all of the specified bytes to the stream.

Parameters:

ParameterTypeDescription
bytesbyte[]The bytes to write.

writeByte(byte value)

public void writeByte(byte value)

Writes a byte to the current position in the stream and advances the position within the stream by one byte.

Parameters:

ParameterTypeDescription
valuebyteThe byte to write to the stream.

read(byte[] bytes)

public int read(byte[] bytes)

Reads bytes to fill the specified bytes buffer.

Parameters:

ParameterTypeDescription
bytesbyte[]The bytes to fill.

Returns: int - The number of bytes read. This value can be less than the number of bytes in the buffer if there is not enough bytes in the stream.

toBytes()

public byte[] toBytes()

Converts the stream data to the byte array.

Returns: byte[] - The stream data converted to the byte array.

toBytes(long position, long bytesCount)

public byte[] toBytes(long position, long bytesCount)

Converts the stream data to the byte array.

Parameters:

ParameterTypeDescription
positionlongThe position to start reading bytes from.
bytesCountlongThe bytes count to read.

Returns: byte[] - The stream data converted to the byte array.

read(byte[] buffer, int offset, int count)

public int read(byte[] buffer, int offset, int count)

Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.

Parameters:

ParameterTypeDescription
bufferbyte[]An array of bytes. When this method returns, the buffer contains the specified byte array with the values between offset and (offset + count - 1) replaced by the bytes read from the current source.
offsetintThe zero-based byte offset in buffer at which to begin storing the data read from the current stream.
countintThe maximum number of bytes to be read from the current stream.

Returns: int - The total number of bytes read into the buffer. This can be less than the number of bytes requested if that many bytes are not currently available, or zero (0) if the end of the stream has been reached.

readByte()

public int readByte()

Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.

Returns: int - The unsigned byte cast to an Int32, or -1 if at the end of the stream.

seek(long offset, int origin)

public long seek(long offset, int origin)

Sets the position within the current stream.

Parameters:

ParameterTypeDescription
offsetlongA byte offset relative to the origin parameter. This value represents offset from the starting stream position passed in the StreamContainer constructor.
originintA value of type System.IO.SeekOrigin indicating the reference point used to obtain the new position.

Returns: long - The new position within the current stream.

seekBegin()

public void seekBegin()

Sets the stream position to the beginning of the stream. This value represents offset from the starting stream position passed in the StreamContainer constructor.

write(byte[] buffer, int offset, int count)

public void write(byte[] buffer, int offset, int count)

Writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.

Parameters:

ParameterTypeDescription
bufferbyte[]An array of bytes. This method copies count bytes from buffer to the current stream.
offsetintThe zero-based byte offset in buffer at which to begin copying bytes to the current stream.
countintThe number of bytes to be written to the current stream.

save(OutputStream destinationStream)

public void save(OutputStream destinationStream)

Saves (copies) the stream’s data to the specified stream. Uses default buffer size ReadWriteBytesCount and stream Length value.

Parameters:

ParameterTypeDescription
destinationStreamjava.io.OutputStreamThe stream to save the data to.

save(OutputStream destinationStream, int bufferSize)

public void save(OutputStream destinationStream, int bufferSize)

Saves (copies) all the stream’s data to the specified stream. Uses stream Length value.

Parameters:

ParameterTypeDescription
destinationStreamjava.io.OutputStreamThe stream to save the data to.
bufferSizeintThe buffer.

save(OutputStream destinationStream, int bufferSize, long length)

public void save(OutputStream destinationStream, int bufferSize, long length)

Saves (copies) the stream’s data to the specified stream.

Parameters:

ParameterTypeDescription
destinationStreamjava.io.OutputStreamThe stream to save the data to.
bufferSizeintThe buffer size. By default ReadWriteBytesCount value is used.
lengthlongThe stream data length to copy. By default, the length is set to Length value.

save(String filePath)

public void save(String filePath)

Saves (copies) the stream’s data to the specified stream. Uses default buffer size ReadWriteBytesCount and stream Length value.

Parameters:

ParameterTypeDescription
filePathjava.lang.StringThe file path to save the stream data to.

save(String filePath, int bufferSize)

public void save(String filePath, int bufferSize)

Saves (copies) the stream’s data to the specified stream. Uses stream Length value.

Parameters:

ParameterTypeDescription
filePathjava.lang.StringThe file path to save the stream data to.
bufferSizeintThe buffer size. By default ReadWriteBytesCount value is used.

save(String filePath, int bufferSize, long length)

public void save(String filePath, int bufferSize, long length)

Saves (copies) the stream’s data to the specified stream.

Parameters:

ParameterTypeDescription
filePathjava.lang.StringThe file path to save the stream data to.
bufferSizeintThe buffer size. By default ReadWriteBytesCount value is used.
lengthlongThe stream data length to copy. By default, the length is set to Length value.

writeTo(StreamContainer streamContainer)

public void writeTo(StreamContainer streamContainer)

Copies the contained data to another StreamContainer.

Parameters:

ParameterTypeDescription
streamContainerStreamContainerThe stream container to copy to.

writeTo(StreamContainer streamContainer, long length)

public void writeTo(StreamContainer streamContainer, long length)

Copies the contained data to another StreamContainer.

Parameters:

ParameterTypeDescription
streamContainerStreamContainerThe stream container to copy to.
lengthlongThe bytes count to write.