- 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)
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/activation/FileTypeMap.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.