public interface DataContentHandler
DataContentHandlers
the framework can be extended to convert streams in to objects, and
to write objects to streams. Applications don't generally call the methods in DataContentHandlers directly. Instead, an application calls the equivalent methods in DataHandler. The DataHandler will attempt to find an appropriate DataContentHandler that corresponds to its MIME type using the current DataContentHandlerFactory. The DataHandler then calls through to the methods in the DataContentHandler.
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
getContent(DataSource ds)
Return an object representing the data in its most preferred form.
|
java.lang.Object |
getTransferData(ActivationDataFlavor df,
DataSource ds)
Returns an object which represents the data to be transferred.
|
ActivationDataFlavor[] |
getTransferDataFlavors()
Returns an array of ActivationDataFlavor objects indicating the flavors
the data can be provided in.
|
void |
writeTo(java.lang.Object obj,
java.lang.String mimeType,
java.io.OutputStream os)
Convert the object to a byte stream of the specified MIME type
and write it to the output stream.
|
ActivationDataFlavor[] getTransferDataFlavors()
java.lang.Object getTransferData(ActivationDataFlavor df, DataSource ds) throws java.io.IOException
df
- The ActivationDataFlavor representing the requested type.ds
- The DataSource representing the data to be converted.java.io.IOException
- if the handler doesn't
support the requested flavorjava.io.IOException
- if the data can't be accessedjava.lang.Object getContent(DataSource ds) throws java.io.IOException
getTransferDataFlavors
method.ds
- The DataSource representing the data to be converted.java.io.IOException
- if the data can't be accessedvoid writeTo(java.lang.Object obj, java.lang.String mimeType, java.io.OutputStream os) throws java.io.IOException
obj
- The object to be converted.mimeType
- The requested MIME type of the resulting byte stream.os
- The output stream into which to write the converted
byte stream.java.io.IOException
- errors writing to the stream