- java.lang.Object
-
- javax.activation.FileTypeMap
-
- Direct Known Subclasses:
- MimetypesFileTypeMap
public abstract class FileTypeMap extends Object
The FileTypeMap is an abstract class that provides a data typing interface for files. Implementations of this class will implement the getContentType methods which will derive a content type from a file name or a File object. FileTypeMaps could use any scheme to determine the data type, from examining the file extension of a file (like the MimetypesFileTypeMap) to opening the file and trying to derive its type from the contents of the file. The FileDataSource class uses the default FileTypeMap (a MimetypesFileTypeMap unless changed) to determine the content type of files.- Since:
- 1.6
- See Also:
FileTypeMap
,FileDataSource
,MimetypesFileTypeMap
-
-
Constructor Summary
Constructors Constructor and Description FileTypeMap()
The default constructor.
-
Method Summary
Methods Modifier and Type Method and Description abstract String
getContentType(File file)
Return the type of the file object.abstract String
getContentType(String filename)
Return the type of the file passed in.static FileTypeMap
getDefaultFileTypeMap()
Return the default FileTypeMap for the system.static void
setDefaultFileTypeMap(FileTypeMap fileTypeMap)
Sets the default FileTypeMap for the system.
-
-
-
Method Detail
-
getContentType
public abstract String getContentType(File file)
Return the type of the file object. This method should always return a valid MIME type.- Parameters:
file
- A file to be typed.- Returns:
- The content type.
-
getContentType
public abstract String getContentType(String filename)
Return the type of the file passed in. This method should always return a valid MIME type.- Parameters:
filename
- the pathname of the file.- Returns:
- The content type.
-
setDefaultFileTypeMap
public static void setDefaultFileTypeMap(FileTypeMap fileTypeMap)
Sets the default FileTypeMap for the system. This instance will be returned to callers of getDefaultFileTypeMap.- Parameters:
fileTypeMap
- The FileTypeMap.- Throws:
SecurityException
- if the caller doesn't have permission to change the default
-
getDefaultFileTypeMap
public static FileTypeMap getDefaultFileTypeMap()
Return the default FileTypeMap for the system. If setDefaultFileTypeMap was called, return that instance, otherwise return an instance ofMimetypesFileTypeMap
.- Returns:
- The default FileTypeMap
- See Also:
setDefaultFileTypeMap(javax.activation.FileTypeMap)
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/activation/FileTypeMap.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.