public class StringBlob extends AbstractBlob implements Serializable
TEXT_PLAIN, UTF_8
Constructor and Description |
---|
StringBlob(String content) |
StringBlob(String string,
String mimeType) |
StringBlob(String string,
String mimeType,
String encoding) |
StringBlob(String string,
String mimeType,
String encoding,
String filename) |
Modifier and Type | Method and Description |
---|---|
byte[] |
getByteArray() |
long |
getLength()
Gets the data length in bytes if known.
|
InputStream |
getStream()
Gets an
InputStream for the data of this blob. |
String |
getString() |
equals, getCloseableFile, getCloseableFile, getDigest, getEncoding, getFile, getFilename, getMimeType, hashCode, setDigest, setEncoding, setFilename, setMimeType, transferTo, transferTo
public StringBlob(String content)
public long getLength()
Blob
getLength
in interface Blob
getLength
in class AbstractBlob
public InputStream getStream() throws IOException
Blob
InputStream
for the data of this blob.
The contract of Blob
is that this method can be called several times and will correctly return a new
InputStream
each time. In other words, several reads of the Blob
can be done.
Like all InputStream
, the result must be closed when done with it to avoid resource leaks.
getStream
in interface Blob
IOException
public byte[] getByteArray() throws IOException
getByteArray
in interface Blob
getByteArray
in class AbstractBlob
IOException
public String getString()
getString
in interface Blob
getString
in class AbstractBlob
Copyright © 2015 Nuxeo SA. All rights reserved.