-
- All Known Implementing Classes:
- FileDataSource, URLDataSource
public interface DataSource
The DataSource interface provides the JavaBeans Activation Framework with an abstraction of an arbitrary collection of data. It provides a type for that data as well as access to it in the form ofInputStreams
andOutputStreams
where appropriate.- Since:
- 1.6
-
-
Method Summary
Methods Modifier and Type Method and Description String
getContentType()
This method returns the MIME type of the data in the form of a string.InputStream
getInputStream()
This method returns anInputStream
representing the data and throws the appropriate exception if it can not do so.String
getName()
Return the name of this object where the name of the object is dependant on the nature of the underlying objects.OutputStream
getOutputStream()
This method returns anOutputStream
where the data can be written and throws the appropriate exception if it can not do so.
-
-
-
Method Detail
-
getInputStream
InputStream getInputStream() throws IOException
This method returns anInputStream
representing the data and throws the appropriate exception if it can not do so. Note that a newInputStream
object must be returned each time this method is called, and the stream must be positioned at the beginning of the data.- Returns:
- an InputStream
- Throws:
IOException
-
getOutputStream
OutputStream getOutputStream() throws IOException
This method returns anOutputStream
where the data can be written and throws the appropriate exception if it can not do so. Note that a newOutputStream
object must be returned each time this method is called, and the stream must be positioned at the location the data is to be written.- Returns:
- an OutputStream
- Throws:
IOException
-
getContentType
String getContentType()
This method returns the MIME type of the data in the form of a string. It should always return a valid type. It is suggested that getContentType return "application/octet-stream" if the DataSource implementation can not determine the data type.- Returns:
- the MIME Type
-
getName
String getName()
Return the name of this object where the name of the object is dependant on the nature of the underlying objects. DataSources encapsulating files may choose to return the filename of the object. (Typically this would be the last component of the filename, not an entire pathname.)- Returns:
- the name of the object.
-
-
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
05/11/2024 13:47:41 Cette version de la page est en cache (à la date du 05/11/2024 13:47:41) 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/DataSource.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.