|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.zkoss.util.media.RepeatableMedia
public class RepeatableMedia
RepeatableMedia adds functionality to another media,
the ability to read repeatedly.
Unlike other media, RepeatableMedia uses
RepeatableInputStream, if binary, or RepeatableReader
to make getStreamData() and getReaderData() to
be able to re-open when InputStream.close()
or Reader.close() is called.
In other words, the buffered input stream of the give media
is never closed until it is GC-ed.
| Method Summary | |
|---|---|
byte[] |
getByteData()
Returns the raw data in byte array. |
java.lang.String |
getContentType()
Returns the content type, e.g., "image/jpeg", or null if not available. |
java.lang.String |
getFormat()
Returns the format name, e.g., "jpeg", or null if not available. |
static Media |
getInstance(Media media)
Returns a repeatable media with a repeatable input stream or reader, or null if the given media is null. |
java.lang.String |
getName()
Returns the name (usually filename) of this media, or null if not available. |
java.io.Reader |
getReaderData()
Returns the raw data in Reader. |
java.io.InputStream |
getStreamData()
Returns the repeatable input stream, if the original input stream is not null. |
java.lang.String |
getStringData()
Returns the raw data in string. |
boolean |
inMemory()
Returns whether the data is cached in memory (in form of byte[] or String). |
boolean |
isBinary()
Returns whether the format of this content is binary or text-based. |
boolean |
isContentDisposition()
Whether to allow Content-Disposition or not when writing the media to response header. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static Media getInstance(Media media)
public java.io.Reader getReaderData()
MediaNote: it wraps Media.getStringData() with StringReader,
if it is in memory (Media.inMemory() returns true).
getReaderData in interface MediaMedia.getReaderData()public java.io.InputStream getStreamData()
getStreamData in interface MediaMedia.getStreamData(),
RepeatableInputStream.getInstance(InputStream)public byte[] getByteData()
MediaIt might not be a copy, so don't modify it directly unless you know what you are doing.
If the data is not cached in memory (Media.inMemory() return false),
the data will be read from Media.getStreamData(). Furthermore, it
also implies you can not invoke this method again.
getByteData in interface MediaMedia.getByteData()public java.lang.String getContentType()
Media
getContentType in interface MediaMedia.getContentType()public java.lang.String getFormat()
Media
getFormat in interface MediaMedia.getFormat()public java.lang.String getName()
Media
getName in interface MediaMedia.getName()public java.lang.String getStringData()
MediaIf the data is not cached in memory (Media.inMemory() return false),
the data will be read from Media.getReaderData(). Furthermore, it
also implies you can not invoke this method again.
getStringData in interface MediaMedia.getStringData()public boolean inMemory()
Media
inMemory in interface MediaMedia.inMemory()public boolean isBinary()
MediaMedia.getByteData() or Media.getStreamData()
to retrieve its content.
If false, use Media.getStringData() or Media.getReaderData()
to retrieve its content.
isBinary in interface MediaMedia.isBinary()public boolean isContentDisposition()
MediaDefault: true
isContentDisposition in interface MediaMedia.isContentDisposition()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||