Where to get a copy of mime.types file?

Viewed 9144

Wondering if anyone experienced develop anything that deals with mime type and know where to get a copy of latest mime.types. A file that contains all the MIME Type/Extention.

ftp dir at iana.org seem to be no longer accessible.

I have a java program which requires file that lists all mime types and extentions for file type validation.

MimetypesFileTypeMap mmp = new MimetypesFileTypeMap("path/to/mime.types");

example of mime.types content

# MIME type         Extension
application/vnd.motorola.flexsuite.ttc
application/vnd.motorola.flexsuite.wem
application/vnd.mozilla.xul+xml
application/vnd.ms-artgalry
application/vnd.ms-asf
application/vnd.ms-excel    xls
application/vnd.ms-lrm
application/vnd.ms-powerpoint   ppt

Update:

Found an efficient copy of this file in Apache HTTPD repos

1 Answers
Related