public static FileNameMap getFileNameMap() {
// Must use lazy initialization or there is a bootstrap problem
// trying to load the MimeTable resource from a .jar before
// JarURLConnection has finished initialization.
if (fileNameMap == null) {
fileNameMap = new MimeTable();
}
return fileNameMap;
}