-
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. ThroughDataContentHandlers
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.
- Since:
- 1.6
-
-
Method Summary
Methods Modifier and Type Method and Description 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.
-
-
-
Method Detail
-
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).- Returns:
- 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.- Parameters:
df
- The DataFlavor representing the requested type.ds
- The DataSource representing the data to be converted.- Returns:
- The constructed Object.
- Throws:
UnsupportedFlavorException
- if the handler doesn't support the requested flavorIOException
- 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 thegetTransferDataFlavors
method.- Parameters:
ds
- The DataSource representing the data to be converted.- Returns:
- The constructed Object.
- Throws:
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.- Parameters:
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.- Throws:
IOException
- errors writing to the stream
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
22/11/2024 20:44:35 Cette version de la page est en cache (à la date du 22/11/2024 20:44:35) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 11/06/2005, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/activation/datacontenthandler.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.