DataContentHandler (Java EE 5 SDK)

Java

Java EE 5 SDK

深圳电信培训中心.徐海蛟老师.


javax.activation Interface DataContentHandler


public interface DataContentHandler

The DataContentHandler interface is implemented by objects that can be used to extend the capabilities of the DataHandler's implementation of the Transferable interface. Through 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.


方法摘要
 Object getContent(DataSource ds)
          Return an object representing the data in its most preferred form.
 Object getTransferData(DataFlavor df, DataSource ds)
          Returns an object which represents the data to be transferred.
 DataFlavor[] getTransferDataFlavors()
          Returns an array of DataFlavor objects indicating the flavors the data can be provided in.
 void writeTo(Object obj, String mimeType, OutputStream os)
          Convert the object to a byte stream of the specified MIME type and write it to the output stream.
 

方法详细信息

getTransferDataFlavors

DataFlavor[] getTransferDataFlavors()
Returns an array of DataFlavor objects indicating the flavors the data can be provided in. The array should be ordered according to preference for providing the data (from most richly descriptive to least descriptive).

返回:
The DataFlavors.

getTransferData

Object getTransferData(DataFlavor df,
                       DataSource ds)
                       throws UnsupportedFlavorException,
                              IOException
Returns an object which represents the data to be transferred. The class of the object returned is defined by the representation class of the flavor.

参数:
df - The DataFlavor representing the requested type.
ds - The DataSource representing the data to be converted.
返回:
The constructed Object.
抛出异常:
UnsupportedFlavorException - if the handler doesn't support the requested flavor
IOException - if the data can't be accessed

getContent

Object getContent(DataSource ds)
                  throws IOException
Return an object representing the data in its most preferred form. Generally this will be the form described by the first DataFlavor returned by the getTransferDataFlavors method.

参数:
ds - The DataSource representing the data to be converted.
返回:
The constructed Object.
抛出异常:
IOException - if the data can't be accessed

writeTo

void writeTo(Object obj,
             String mimeType,
             OutputStream os)
             throws IOException
Convert the object to a byte stream of the specified MIME type and write it to the output stream.

参数:
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.
抛出异常:
IOException - errors writing to the stream

Java EE 5 SDK

深圳电信培训中心.徐海蛟老师.


提交错误或意见

版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。深圳电信培训中心.徐海蛟老师教学参考.