public class ByteArrayStreamingContent extends Object implements StreamingContent
Implementation is not thread-safe.
| Constructor and Description |
|---|
ByteArrayStreamingContent(byte[] byteArray) |
ByteArrayStreamingContent(byte[] byteArray,
int offset,
int length) |
public ByteArrayStreamingContent(byte[] byteArray)
byteArray - byte array contentpublic ByteArrayStreamingContent(byte[] byteArray,
int offset,
int length)
byteArray - byte array contentoffset - starting offset into the byte arraylength - of bytes to read from byte arraypublic void writeTo(OutputStream out) throws IOException
StreamingContentImplementations must not close the output stream, and instead should flush the output stream. Some callers may assume that the the output stream has not been closed, and will fail to work if it has been closed.
writeTo in interface StreamingContentout - output streamIOExceptionCopyright © 2011-2015 Google. All Rights Reserved.