Where can I get a copy of the mime.types file?

It's amazing if anyone has experienced the development of anything related to the mime type and find out where to get a copy of the latest mime.types. A file containing all the MIME type / extension.

ftp dir at iana.org seems to be unavailable.

I have a java program that requires a file that lists all the mime types and extensions to check the file type.

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

mime.types content example

 # 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:

Effective copy of this file found in Apache HTTPD repositories

+4
source share

All Articles