blob: 73fb3255e794c7fdf92e7593afd2d4600db4fac2 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>MimeTypes xref</title>
<link type="text/css" rel="stylesheet" href="../../../../../../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../../../../../../apidocs/org/apache/chemistry/opencmis/commons/impl/MimeTypes.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_comment">/*</em>
<a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em>
<a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_comment"> * or more contributor license agreements. See the NOTICE file</em>
<a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_comment"> * distributed with this work for additional information</em>
<a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_comment"> * regarding copyright ownership. The ASF licenses this file</em>
<a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em>
<a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em>
<a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_comment"> * with the License. You may obtain a copy of the License at</em>
<a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_comment"> *</em>
<a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
<a class="jxr_linenumber" name="11" href="#11">11</a> <em class="jxr_comment"> *</em>
<a class="jxr_linenumber" name="12" href="#12">12</a> <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing,</em>
<a class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_comment"> * software distributed under the License is distributed on an</em>
<a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_comment"> * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY</em>
<a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_comment"> * KIND, either express or implied. See the License for the</em>
<a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_comment"> * specific language governing permissions and limitations</em>
<a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_comment"> * under the License.</em>
<a class="jxr_linenumber" name="18" href="#18">18</a> <em class="jxr_comment"> */</em>
<a class="jxr_linenumber" name="19" href="#19">19</a> <strong class="jxr_keyword">package</strong> org.apache.chemistry.opencmis.commons.impl;
<a class="jxr_linenumber" name="20" href="#20">20</a>
<a class="jxr_linenumber" name="21" href="#21">21</a> <strong class="jxr_keyword">import</strong> java.io.File;
<a class="jxr_linenumber" name="22" href="#22">22</a> <strong class="jxr_keyword">import</strong> java.net.URLConnection;
<a class="jxr_linenumber" name="23" href="#23">23</a> <strong class="jxr_keyword">import</strong> java.util.HashMap;
<a class="jxr_linenumber" name="24" href="#24">24</a> <strong class="jxr_keyword">import</strong> java.util.Locale;
<a class="jxr_linenumber" name="25" href="#25">25</a> <strong class="jxr_keyword">import</strong> java.util.Map;
<a class="jxr_linenumber" name="26" href="#26">26</a>
<a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/impl/MimeTypes.html">MimeTypes</a> {
<a class="jxr_linenumber" name="28" href="#28">28</a>
<a class="jxr_linenumber" name="29" href="#29">29</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Map&lt;String, String&gt; EXT2MIME = <strong class="jxr_keyword">new</strong> HashMap&lt;String, String&gt;();
<a class="jxr_linenumber" name="30" href="#30">30</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">final</strong> Map&lt;String, String&gt; MIME2EXT = <strong class="jxr_keyword">new</strong> HashMap&lt;String, String&gt;();
<a class="jxr_linenumber" name="31" href="#31">31</a>
<a class="jxr_linenumber" name="32" href="#32">32</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/chemistry/opencmis/commons/impl/MimeTypes.html">MimeTypes</a>() {
<a class="jxr_linenumber" name="33" href="#33">33</a> }
<a class="jxr_linenumber" name="34" href="#34">34</a>
<a class="jxr_linenumber" name="35" href="#35">35</a> <strong class="jxr_keyword">static</strong> {
<a class="jxr_linenumber" name="36" href="#36">36</a> <em class="jxr_comment">// extension to MIME type</em>
<a class="jxr_linenumber" name="37" href="#37">37</a> EXT2MIME.put(<span class="jxr_string">""</span>, <span class="jxr_string">"application/octet-stream"</span>);
<a class="jxr_linenumber" name="38" href="#38">38</a> EXT2MIME.put(<span class="jxr_string">"ai"</span>, <span class="jxr_string">"application/postscript"</span>);
<a class="jxr_linenumber" name="39" href="#39">39</a> EXT2MIME.put(<span class="jxr_string">"aif"</span>, <span class="jxr_string">"audio/x-aiff"</span>);
<a class="jxr_linenumber" name="40" href="#40">40</a> EXT2MIME.put(<span class="jxr_string">"aifc"</span>, <span class="jxr_string">"audio/x-aiff"</span>);
<a class="jxr_linenumber" name="41" href="#41">41</a> EXT2MIME.put(<span class="jxr_string">"aiff"</span>, <span class="jxr_string">"audio/x-aiff"</span>);
<a class="jxr_linenumber" name="42" href="#42">42</a> EXT2MIME.put(<span class="jxr_string">"asf"</span>, <span class="jxr_string">"video/x-ms-asf"</span>);
<a class="jxr_linenumber" name="43" href="#43">43</a> EXT2MIME.put(<span class="jxr_string">"asr"</span>, <span class="jxr_string">"video/x-ms-asf"</span>);
<a class="jxr_linenumber" name="44" href="#44">44</a> EXT2MIME.put(<span class="jxr_string">"asx"</span>, <span class="jxr_string">"video/x-ms-asf"</span>);
<a class="jxr_linenumber" name="45" href="#45">45</a> EXT2MIME.put(<span class="jxr_string">"au"</span>, <span class="jxr_string">"audio/basic"</span>);
<a class="jxr_linenumber" name="46" href="#46">46</a> EXT2MIME.put(<span class="jxr_string">"avi"</span>, <span class="jxr_string">"video/x-msvideo"</span>);
<a class="jxr_linenumber" name="47" href="#47">47</a> EXT2MIME.put(<span class="jxr_string">"axs"</span>, <span class="jxr_string">"application/olescript"</span>);
<a class="jxr_linenumber" name="48" href="#48">48</a> EXT2MIME.put(<span class="jxr_string">"bas"</span>, <span class="jxr_string">"text/plain"</span>);
<a class="jxr_linenumber" name="49" href="#49">49</a> EXT2MIME.put(<span class="jxr_string">"bmp"</span>, <span class="jxr_string">"image/bmp"</span>);
<a class="jxr_linenumber" name="50" href="#50">50</a> EXT2MIME.put(<span class="jxr_string">"c"</span>, <span class="jxr_string">"text/plain"</span>);
<a class="jxr_linenumber" name="51" href="#51">51</a> EXT2MIME.put(<span class="jxr_string">"cat"</span>, <span class="jxr_string">"application/vnd.ms-pkiseccat"</span>);
<a class="jxr_linenumber" name="52" href="#52">52</a> EXT2MIME.put(<span class="jxr_string">"cdf"</span>, <span class="jxr_string">"application/x-cdf"</span>);
<a class="jxr_linenumber" name="53" href="#53">53</a> EXT2MIME.put(<span class="jxr_string">"cer"</span>, <span class="jxr_string">"application/x-x509-ca-cert"</span>);
<a class="jxr_linenumber" name="54" href="#54">54</a> EXT2MIME.put(<span class="jxr_string">"class"</span>, <span class="jxr_string">"application/java-vm"</span>);
<a class="jxr_linenumber" name="55" href="#55">55</a> EXT2MIME.put(<span class="jxr_string">"clp"</span>, <span class="jxr_string">"application/x-msclip"</span>);
<a class="jxr_linenumber" name="56" href="#56">56</a> EXT2MIME.put(<span class="jxr_string">"cmx"</span>, <span class="jxr_string">"image/x-cmx"</span>);
<a class="jxr_linenumber" name="57" href="#57">57</a> EXT2MIME.put(<span class="jxr_string">"cod"</span>, <span class="jxr_string">"image/cis-cod"</span>);
<a class="jxr_linenumber" name="58" href="#58">58</a> EXT2MIME.put(<span class="jxr_string">"cpio"</span>, <span class="jxr_string">"application/x-cpio"</span>);
<a class="jxr_linenumber" name="59" href="#59">59</a> EXT2MIME.put(<span class="jxr_string">"crd"</span>, <span class="jxr_string">"application/x-mscardfile"</span>);
<a class="jxr_linenumber" name="60" href="#60">60</a> EXT2MIME.put(<span class="jxr_string">"crl"</span>, <span class="jxr_string">"application/pkix-crl"</span>);
<a class="jxr_linenumber" name="61" href="#61">61</a> EXT2MIME.put(<span class="jxr_string">"crt"</span>, <span class="jxr_string">"application/x-x509-ca-cert"</span>);
<a class="jxr_linenumber" name="62" href="#62">62</a> EXT2MIME.put(<span class="jxr_string">"csh"</span>, <span class="jxr_string">"application/x-csh"</span>);
<a class="jxr_linenumber" name="63" href="#63">63</a> EXT2MIME.put(<span class="jxr_string">"css"</span>, <span class="jxr_string">"text/css"</span>);
<a class="jxr_linenumber" name="64" href="#64">64</a> EXT2MIME.put(<span class="jxr_string">"dll"</span>, <span class="jxr_string">"application/x-msdownload"</span>);
<a class="jxr_linenumber" name="65" href="#65">65</a> EXT2MIME.put(<span class="jxr_string">"doc"</span>, <span class="jxr_string">"application/msword"</span>);
<a class="jxr_linenumber" name="66" href="#66">66</a> EXT2MIME.put(<span class="jxr_string">"docx"</span>, <span class="jxr_string">"application/vnd.openxmlformats-officedocument.wordprocessingml.document"</span>);
<a class="jxr_linenumber" name="67" href="#67">67</a> EXT2MIME.put(<span class="jxr_string">"doct"</span>, <span class="jxr_string">"application/vnd.openxmlformats-officedocument.wordprocessingml.template"</span>);
<a class="jxr_linenumber" name="68" href="#68">68</a> EXT2MIME.put(<span class="jxr_string">"dot"</span>, <span class="jxr_string">"application/msword"</span>);
<a class="jxr_linenumber" name="69" href="#69">69</a> EXT2MIME.put(<span class="jxr_string">"dvi"</span>, <span class="jxr_string">"application/x-dvi"</span>);
<a class="jxr_linenumber" name="70" href="#70">70</a> EXT2MIME.put(<span class="jxr_string">"dxr"</span>, <span class="jxr_string">"application/x-director"</span>);
<a class="jxr_linenumber" name="71" href="#71">71</a> EXT2MIME.put(<span class="jxr_string">"eps"</span>, <span class="jxr_string">"application/postscript"</span>);
<a class="jxr_linenumber" name="72" href="#72">72</a> EXT2MIME.put(<span class="jxr_string">"epub"</span>, <span class="jxr_string">"application/epub+zip"</span>);
<a class="jxr_linenumber" name="73" href="#73">73</a> EXT2MIME.put(<span class="jxr_string">"etx"</span>, <span class="jxr_string">"text/x-setext"</span>);
<a class="jxr_linenumber" name="74" href="#74">74</a> EXT2MIME.put(<span class="jxr_string">"evy"</span>, <span class="jxr_string">"application/envoy"</span>);
<a class="jxr_linenumber" name="75" href="#75">75</a> EXT2MIME.put(<span class="jxr_string">"f4v"</span>, <span class="jxr_string">"video/x-f4v"</span>);
<a class="jxr_linenumber" name="76" href="#76">76</a> EXT2MIME.put(<span class="jxr_string">"flac"</span>, <span class="jxr_string">"audio/flac"</span>);
<a class="jxr_linenumber" name="77" href="#77">77</a> EXT2MIME.put(<span class="jxr_string">"fif"</span>, <span class="jxr_string">"application/fractals"</span>);
<a class="jxr_linenumber" name="78" href="#78">78</a> EXT2MIME.put(<span class="jxr_string">"flr"</span>, <span class="jxr_string">"x-world/x-vrml"</span>);
<a class="jxr_linenumber" name="79" href="#79">79</a> EXT2MIME.put(<span class="jxr_string">"fli"</span>, <span class="jxr_string">"video/x-fli"</span>);
<a class="jxr_linenumber" name="80" href="#80">80</a> EXT2MIME.put(<span class="jxr_string">"flv"</span>, <span class="jxr_string">"video/x-flv"</span>);
<a class="jxr_linenumber" name="81" href="#81">81</a> EXT2MIME.put(<span class="jxr_string">"fm"</span>, <span class="jxr_string">"application/vnd.framemaker"</span>);
<a class="jxr_linenumber" name="82" href="#82">82</a> EXT2MIME.put(<span class="jxr_string">"gif"</span>, <span class="jxr_string">"image/gif"</span>);
<a class="jxr_linenumber" name="83" href="#83">83</a> EXT2MIME.put(<span class="jxr_string">"gtar"</span>, <span class="jxr_string">"application/x-gtar"</span>);
<a class="jxr_linenumber" name="84" href="#84">84</a> EXT2MIME.put(<span class="jxr_string">"gz"</span>, <span class="jxr_string">"application/x-gzip"</span>);
<a class="jxr_linenumber" name="85" href="#85">85</a> EXT2MIME.put(<span class="jxr_string">"h"</span>, <span class="jxr_string">"text/plain"</span>);
<a class="jxr_linenumber" name="86" href="#86">86</a> EXT2MIME.put(<span class="jxr_string">"hdf"</span>, <span class="jxr_string">"application/x-hdf"</span>);
<a class="jxr_linenumber" name="87" href="#87">87</a> EXT2MIME.put(<span class="jxr_string">"hlp"</span>, <span class="jxr_string">"application/winhlp"</span>);
<a class="jxr_linenumber" name="88" href="#88">88</a> EXT2MIME.put(<span class="jxr_string">"hqx"</span>, <span class="jxr_string">"application/mac-binhex40"</span>);
<a class="jxr_linenumber" name="89" href="#89">89</a> EXT2MIME.put(<span class="jxr_string">"hta"</span>, <span class="jxr_string">"application/hta"</span>);
<a class="jxr_linenumber" name="90" href="#90">90</a> EXT2MIME.put(<span class="jxr_string">"htc"</span>, <span class="jxr_string">"text/x-component"</span>);
<a class="jxr_linenumber" name="91" href="#91">91</a> EXT2MIME.put(<span class="jxr_string">"htm"</span>, <span class="jxr_string">"text/html"</span>);
<a class="jxr_linenumber" name="92" href="#92">92</a> EXT2MIME.put(<span class="jxr_string">"html"</span>, <span class="jxr_string">"text/html"</span>);
<a class="jxr_linenumber" name="93" href="#93">93</a> EXT2MIME.put(<span class="jxr_string">"htt"</span>, <span class="jxr_string">"text/webviewhtml"</span>);
<a class="jxr_linenumber" name="94" href="#94">94</a> EXT2MIME.put(<span class="jxr_string">"ico"</span>, <span class="jxr_string">"image/x-icon"</span>);
<a class="jxr_linenumber" name="95" href="#95">95</a> EXT2MIME.put(<span class="jxr_string">"ief"</span>, <span class="jxr_string">"image/ief"</span>);
<a class="jxr_linenumber" name="96" href="#96">96</a> EXT2MIME.put(<span class="jxr_string">"iii"</span>, <span class="jxr_string">"application/x-iphone"</span>);
<a class="jxr_linenumber" name="97" href="#97">97</a> EXT2MIME.put(<span class="jxr_string">"isp"</span>, <span class="jxr_string">"application/x-internet-signup"</span>);
<a class="jxr_linenumber" name="98" href="#98">98</a> EXT2MIME.put(<span class="jxr_string">"jar"</span>, <span class="jxr_string">"application/java-archive"</span>);
<a class="jxr_linenumber" name="99" href="#99">99</a> EXT2MIME.put(<span class="jxr_string">"jfif"</span>, <span class="jxr_string">"image/pipeg"</span>);
<a class="jxr_linenumber" name="100" href="#100">100</a> EXT2MIME.put(<span class="jxr_string">"jpe"</span>, <span class="jxr_string">"image/jpeg"</span>);
<a class="jxr_linenumber" name="101" href="#101">101</a> EXT2MIME.put(<span class="jxr_string">"jpeg"</span>, <span class="jxr_string">"image/jpeg"</span>);
<a class="jxr_linenumber" name="102" href="#102">102</a> EXT2MIME.put(<span class="jxr_string">"jpg"</span>, <span class="jxr_string">"image/jpeg"</span>);
<a class="jxr_linenumber" name="103" href="#103">103</a> EXT2MIME.put(<span class="jxr_string">"js"</span>, <span class="jxr_string">"application/x-javascript"</span>);
<a class="jxr_linenumber" name="104" href="#104">104</a> EXT2MIME.put(<span class="jxr_string">"json"</span>, <span class="jxr_string">"application/json"</span>);
<a class="jxr_linenumber" name="105" href="#105">105</a> EXT2MIME.put(<span class="jxr_string">"key"</span>, <span class="jxr_string">"application/vnd.apple.keynote"</span>);
<a class="jxr_linenumber" name="106" href="#106">106</a> EXT2MIME.put(<span class="jxr_string">"latex"</span>, <span class="jxr_string">"application/x-latex"</span>);
<a class="jxr_linenumber" name="107" href="#107">107</a> EXT2MIME.put(<span class="jxr_string">"lsf"</span>, <span class="jxr_string">"video/x-la-asf"</span>);
<a class="jxr_linenumber" name="108" href="#108">108</a> EXT2MIME.put(<span class="jxr_string">"lsx"</span>, <span class="jxr_string">"video/x-la-asf"</span>);
<a class="jxr_linenumber" name="109" href="#109">109</a> EXT2MIME.put(<span class="jxr_string">"m3u"</span>, <span class="jxr_string">"audio/x-mpegurl"</span>);
<a class="jxr_linenumber" name="110" href="#110">110</a> EXT2MIME.put(<span class="jxr_string">"m4a"</span>, <span class="jxr_string">"audio/mp4"</span>);
<a class="jxr_linenumber" name="111" href="#111">111</a> EXT2MIME.put(<span class="jxr_string">"m4b"</span>, <span class="jxr_string">"audio/mp4"</span>);
<a class="jxr_linenumber" name="112" href="#112">112</a> EXT2MIME.put(<span class="jxr_string">"m4p"</span>, <span class="jxr_string">"audio/mp4"</span>);
<a class="jxr_linenumber" name="113" href="#113">113</a> EXT2MIME.put(<span class="jxr_string">"m4r"</span>, <span class="jxr_string">"audio/mp4"</span>);
<a class="jxr_linenumber" name="114" href="#114">114</a> EXT2MIME.put(<span class="jxr_string">"m4v"</span>, <span class="jxr_string">"video/mp4"</span>);
<a class="jxr_linenumber" name="115" href="#115">115</a> EXT2MIME.put(<span class="jxr_string">"man"</span>, <span class="jxr_string">"application/x-troff-man"</span>);
<a class="jxr_linenumber" name="116" href="#116">116</a> EXT2MIME.put(<span class="jxr_string">"mdb"</span>, <span class="jxr_string">"application/x-msaccess"</span>);
<a class="jxr_linenumber" name="117" href="#117">117</a> EXT2MIME.put(<span class="jxr_string">"me"</span>, <span class="jxr_string">"application/x-troff-me"</span>);
<a class="jxr_linenumber" name="118" href="#118">118</a> EXT2MIME.put(<span class="jxr_string">"mhtv"</span>, <span class="jxr_string">"message/rfc822"</span>);
<a class="jxr_linenumber" name="119" href="#119">119</a> EXT2MIME.put(<span class="jxr_string">"mhtml"</span>, <span class="jxr_string">"message/rfc822"</span>);
<a class="jxr_linenumber" name="120" href="#120">120</a> EXT2MIME.put(<span class="jxr_string">"mid"</span>, <span class="jxr_string">"audio/mid"</span>);
<a class="jxr_linenumber" name="121" href="#121">121</a> EXT2MIME.put(<span class="jxr_string">"mov"</span>, <span class="jxr_string">"video/quicktime"</span>);
<a class="jxr_linenumber" name="122" href="#122">122</a> EXT2MIME.put(<span class="jxr_string">"movie"</span>, <span class="jxr_string">"video/x-sgi-movie"</span>);
<a class="jxr_linenumber" name="123" href="#123">123</a> EXT2MIME.put(<span class="jxr_string">"mp2"</span>, <span class="jxr_string">"video/mpeg"</span>);
<a class="jxr_linenumber" name="124" href="#124">124</a> EXT2MIME.put(<span class="jxr_string">"mp3"</span>, <span class="jxr_string">"audio/mpeg"</span>);
<a class="jxr_linenumber" name="125" href="#125">125</a> EXT2MIME.put(<span class="jxr_string">"mp4"</span>, <span class="jxr_string">"video/mp4"</span>);
<a class="jxr_linenumber" name="126" href="#126">126</a> EXT2MIME.put(<span class="jxr_string">"mpa"</span>, <span class="jxr_string">"video/mpeg"</span>);
<a class="jxr_linenumber" name="127" href="#127">127</a> EXT2MIME.put(<span class="jxr_string">"mpe"</span>, <span class="jxr_string">"video/mpegv"</span>);
<a class="jxr_linenumber" name="128" href="#128">128</a> EXT2MIME.put(<span class="jxr_string">"mpeg"</span>, <span class="jxr_string">"video/mpeg"</span>);
<a class="jxr_linenumber" name="129" href="#129">129</a> EXT2MIME.put(<span class="jxr_string">"mpg"</span>, <span class="jxr_string">"video/mpegv"</span>);
<a class="jxr_linenumber" name="130" href="#130">130</a> EXT2MIME.put(<span class="jxr_string">"mpp"</span>, <span class="jxr_string">"application/vnd.ms-project"</span>);
<a class="jxr_linenumber" name="131" href="#131">131</a> EXT2MIME.put(<span class="jxr_string">"mpv2"</span>, <span class="jxr_string">"video/mpeg"</span>);
<a class="jxr_linenumber" name="132" href="#132">132</a> EXT2MIME.put(<span class="jxr_string">"ms"</span>, <span class="jxr_string">"application/x-troff-ms"</span>);
<a class="jxr_linenumber" name="133" href="#133">133</a> EXT2MIME.put(<span class="jxr_string">"mvb"</span>, <span class="jxr_string">"application/x-msmediaview"</span>);
<a class="jxr_linenumber" name="134" href="#134">134</a> EXT2MIME.put(<span class="jxr_string">"numbers"</span>, <span class="jxr_string">"application/vnd.apple.numbers"</span>);
<a class="jxr_linenumber" name="135" href="#135">135</a> EXT2MIME.put(<span class="jxr_string">"nws"</span>, <span class="jxr_string">"message/rfc822"</span>);
<a class="jxr_linenumber" name="136" href="#136">136</a> EXT2MIME.put(<span class="jxr_string">"oda"</span>, <span class="jxr_string">"application/oda"</span>);
<a class="jxr_linenumber" name="137" href="#137">137</a> EXT2MIME.put(<span class="jxr_string">"odb"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.database"</span>);
<a class="jxr_linenumber" name="138" href="#138">138</a> EXT2MIME.put(<span class="jxr_string">"odc"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.chart"</span>);
<a class="jxr_linenumber" name="139" href="#139">139</a> EXT2MIME.put(<span class="jxr_string">"odf"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.formula"</span>);
<a class="jxr_linenumber" name="140" href="#140">140</a> EXT2MIME.put(<span class="jxr_string">"odft"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.formula-template"</span>);
<a class="jxr_linenumber" name="141" href="#141">141</a> EXT2MIME.put(<span class="jxr_string">"odg"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.graphics"</span>);
<a class="jxr_linenumber" name="142" href="#142">142</a> EXT2MIME.put(<span class="jxr_string">"odi"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.image"</span>);
<a class="jxr_linenumber" name="143" href="#143">143</a> EXT2MIME.put(<span class="jxr_string">"odm"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.text-master"</span>);
<a class="jxr_linenumber" name="144" href="#144">144</a> EXT2MIME.put(<span class="jxr_string">"odp"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.presentation"</span>);
<a class="jxr_linenumber" name="145" href="#145">145</a> EXT2MIME.put(<span class="jxr_string">"ods"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.spreadsheet"</span>);
<a class="jxr_linenumber" name="146" href="#146">146</a> EXT2MIME.put(<span class="jxr_string">"odt"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.text"</span>);
<a class="jxr_linenumber" name="147" href="#147">147</a> EXT2MIME.put(<span class="jxr_string">"ogg"</span>, <span class="jxr_string">"audio/ogg"</span>);
<a class="jxr_linenumber" name="148" href="#148">148</a> EXT2MIME.put(<span class="jxr_string">"ogv"</span>, <span class="jxr_string">"video/ogg"</span>);
<a class="jxr_linenumber" name="149" href="#149">149</a> EXT2MIME.put(<span class="jxr_string">"onetoc"</span>, <span class="jxr_string">"application/onenote"</span>);
<a class="jxr_linenumber" name="150" href="#150">150</a> EXT2MIME.put(<span class="jxr_string">"onetoc2"</span>, <span class="jxr_string">"application/onenote"</span>);
<a class="jxr_linenumber" name="151" href="#151">151</a> EXT2MIME.put(<span class="jxr_string">"onetmp"</span>, <span class="jxr_string">"application/onenote"</span>);
<a class="jxr_linenumber" name="152" href="#152">152</a> EXT2MIME.put(<span class="jxr_string">"onepkg"</span>, <span class="jxr_string">"application/onenote"</span>);
<a class="jxr_linenumber" name="153" href="#153">153</a> EXT2MIME.put(<span class="jxr_string">"otc"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.chart-template"</span>);
<a class="jxr_linenumber" name="154" href="#154">154</a> EXT2MIME.put(<span class="jxr_string">"otg"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.graphics-template"</span>);
<a class="jxr_linenumber" name="155" href="#155">155</a> EXT2MIME.put(<span class="jxr_string">"oth"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.text-web"</span>);
<a class="jxr_linenumber" name="156" href="#156">156</a> EXT2MIME.put(<span class="jxr_string">"oti"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.image-template"</span>);
<a class="jxr_linenumber" name="157" href="#157">157</a> EXT2MIME.put(<span class="jxr_string">"otp"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.presentation-template"</span>);
<a class="jxr_linenumber" name="158" href="#158">158</a> EXT2MIME.put(<span class="jxr_string">"ots"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.spreadsheet-template"</span>);
<a class="jxr_linenumber" name="159" href="#159">159</a> EXT2MIME.put(<span class="jxr_string">"ott"</span>, <span class="jxr_string">"application/vnd.oasis.opendocument.text-template"</span>);
<a class="jxr_linenumber" name="160" href="#160">160</a> EXT2MIME.put(<span class="jxr_string">"p10"</span>, <span class="jxr_string">"application/pkcs10"</span>);
<a class="jxr_linenumber" name="161" href="#161">161</a> EXT2MIME.put(<span class="jxr_string">"p12"</span>, <span class="jxr_string">"application/x-pkcs12v"</span>);
<a class="jxr_linenumber" name="162" href="#162">162</a> EXT2MIME.put(<span class="jxr_string">"p7b"</span>, <span class="jxr_string">"application/x-pkcs7-certificates"</span>);
<a class="jxr_linenumber" name="163" href="#163">163</a> EXT2MIME.put(<span class="jxr_string">"p7c"</span>, <span class="jxr_string">"application/x-pkcs7-mime"</span>);
<a class="jxr_linenumber" name="164" href="#164">164</a> EXT2MIME.put(<span class="jxr_string">"p7m"</span>, <span class="jxr_string">"application/x-pkcs7-mime"</span>);
<a class="jxr_linenumber" name="165" href="#165">165</a> EXT2MIME.put(<span class="jxr_string">"p7r"</span>, <span class="jxr_string">"application/x-pkcs7-certreqresp"</span>);
<a class="jxr_linenumber" name="166" href="#166">166</a> EXT2MIME.put(<span class="jxr_string">"p7s"</span>, <span class="jxr_string">"application/x-pkcs7-signature"</span>);
<a class="jxr_linenumber" name="167" href="#167">167</a> EXT2MIME.put(<span class="jxr_string">"pages"</span>, <span class="jxr_string">"application/vnd.apple.pages"</span>);
<a class="jxr_linenumber" name="168" href="#168">168</a> EXT2MIME.put(<span class="jxr_string">"pbm"</span>, <span class="jxr_string">"image/x-portable-bitmap"</span>);
<a class="jxr_linenumber" name="169" href="#169">169</a> EXT2MIME.put(<span class="jxr_string">"pdf"</span>, <span class="jxr_string">"application/pdf"</span>);
<a class="jxr_linenumber" name="170" href="#170">170</a> EXT2MIME.put(<span class="jxr_string">"pfx"</span>, <span class="jxr_string">"application/x-pkcs12"</span>);
<a class="jxr_linenumber" name="171" href="#171">171</a> EXT2MIME.put(<span class="jxr_string">"pgm"</span>, <span class="jxr_string">"image/x-portable-graymap"</span>);
<a class="jxr_linenumber" name="172" href="#172">172</a> EXT2MIME.put(<span class="jxr_string">"vpko"</span>, <span class="jxr_string">"application/ynd.ms-pkipko"</span>);
<a class="jxr_linenumber" name="173" href="#173">173</a> EXT2MIME.put(<span class="jxr_string">"pma"</span>, <span class="jxr_string">"application/x-perfmon"</span>);
<a class="jxr_linenumber" name="174" href="#174">174</a> EXT2MIME.put(<span class="jxr_string">"pmc"</span>, <span class="jxr_string">"application/x-perfmon"</span>);
<a class="jxr_linenumber" name="175" href="#175">175</a> EXT2MIME.put(<span class="jxr_string">"pml"</span>, <span class="jxr_string">"application/x-perfmon"</span>);
<a class="jxr_linenumber" name="176" href="#176">176</a> EXT2MIME.put(<span class="jxr_string">"pmr"</span>, <span class="jxr_string">"application/x-perfmon"</span>);
<a class="jxr_linenumber" name="177" href="#177">177</a> EXT2MIME.put(<span class="jxr_string">"pmw"</span>, <span class="jxr_string">"application/x-perfmon"</span>);
<a class="jxr_linenumber" name="178" href="#178">178</a> EXT2MIME.put(<span class="jxr_string">"png"</span>, <span class="jxr_string">"image/png"</span>);
<a class="jxr_linenumber" name="179" href="#179">179</a> EXT2MIME.put(<span class="jxr_string">"pnm"</span>, <span class="jxr_string">"image/x-portable-anymap"</span>);
<a class="jxr_linenumber" name="180" href="#180">180</a> EXT2MIME.put(<span class="jxr_string">"pot"</span>, <span class="jxr_string">"application/vnd.ms-powerpoint"</span>);
<a class="jxr_linenumber" name="181" href="#181">181</a> EXT2MIME.put(<span class="jxr_string">"ppm"</span>, <span class="jxr_string">"image/x-portable-pixmap"</span>);
<a class="jxr_linenumber" name="182" href="#182">182</a> EXT2MIME.put(<span class="jxr_string">"pps"</span>, <span class="jxr_string">"application/vnd.ms-powerpoint"</span>);
<a class="jxr_linenumber" name="183" href="#183">183</a> EXT2MIME.put(<span class="jxr_string">"ppt"</span>, <span class="jxr_string">"application/vnd.ms-powerpoint"</span>);
<a class="jxr_linenumber" name="184" href="#184">184</a> EXT2MIME.put(<span class="jxr_string">"pptx"</span>, <span class="jxr_string">"application/vnd.openxmlformats-officedocument.presentationml.presentation"</span>);
<a class="jxr_linenumber" name="185" href="#185">185</a> EXT2MIME.put(<span class="jxr_string">"ppsx"</span>, <span class="jxr_string">"application/vnd.openxmlformats-officedocument.presentationml.slideshow"</span>);
<a class="jxr_linenumber" name="186" href="#186">186</a> EXT2MIME.put(<span class="jxr_string">"potx"</span>, <span class="jxr_string">"application/vnd.openxmlformats-officedocument.presentationml.template"</span>);
<a class="jxr_linenumber" name="187" href="#187">187</a> EXT2MIME.put(<span class="jxr_string">"prf"</span>, <span class="jxr_string">"application/pics-rules"</span>);
<a class="jxr_linenumber" name="188" href="#188">188</a> EXT2MIME.put(<span class="jxr_string">"ps"</span>, <span class="jxr_string">"application/postscript"</span>);
<a class="jxr_linenumber" name="189" href="#189">189</a> EXT2MIME.put(<span class="jxr_string">"pub"</span>, <span class="jxr_string">"application/x-mspublisher"</span>);
<a class="jxr_linenumber" name="190" href="#190">190</a> EXT2MIME.put(<span class="jxr_string">"qt"</span>, <span class="jxr_string">"video/quicktime"</span>);
<a class="jxr_linenumber" name="191" href="#191">191</a> EXT2MIME.put(<span class="jxr_string">"ra"</span>, <span class="jxr_string">"audio/x-pn-realaudio"</span>);
<a class="jxr_linenumber" name="192" href="#192">192</a> EXT2MIME.put(<span class="jxr_string">"ram"</span>, <span class="jxr_string">"audio/x-pn-realaudio"</span>);
<a class="jxr_linenumber" name="193" href="#193">193</a> EXT2MIME.put(<span class="jxr_string">"ras"</span>, <span class="jxr_string">"image/x-cmu-raster"</span>);
<a class="jxr_linenumber" name="194" href="#194">194</a> EXT2MIME.put(<span class="jxr_string">"rgb"</span>, <span class="jxr_string">"image/x-rgb"</span>);
<a class="jxr_linenumber" name="195" href="#195">195</a> EXT2MIME.put(<span class="jxr_string">"rmi"</span>, <span class="jxr_string">"audio/mid"</span>);
<a class="jxr_linenumber" name="196" href="#196">196</a> EXT2MIME.put(<span class="jxr_string">"roff"</span>, <span class="jxr_string">"application/x-troff"</span>);
<a class="jxr_linenumber" name="197" href="#197">197</a> EXT2MIME.put(<span class="jxr_string">"rtf"</span>, <span class="jxr_string">"application/rtf"</span>);
<a class="jxr_linenumber" name="198" href="#198">198</a> EXT2MIME.put(<span class="jxr_string">"rtx"</span>, <span class="jxr_string">"text/richtext"</span>);
<a class="jxr_linenumber" name="199" href="#199">199</a> EXT2MIME.put(<span class="jxr_string">"ser"</span>, <span class="jxr_string">"application/java-serialized-object"</span>);
<a class="jxr_linenumber" name="200" href="#200">200</a> EXT2MIME.put(<span class="jxr_string">"scd"</span>, <span class="jxr_string">"application/x-msschedule"</span>);
<a class="jxr_linenumber" name="201" href="#201">201</a> EXT2MIME.put(<span class="jxr_string">"sct"</span>, <span class="jxr_string">"text/scriptlet"</span>);
<a class="jxr_linenumber" name="202" href="#202">202</a> EXT2MIME.put(<span class="jxr_string">"sh"</span>, <span class="jxr_string">"application/x-sh"</span>);
<a class="jxr_linenumber" name="203" href="#203">203</a> EXT2MIME.put(<span class="jxr_string">"shar"</span>, <span class="jxr_string">"application/x-shar"</span>);
<a class="jxr_linenumber" name="204" href="#204">204</a> EXT2MIME.put(<span class="jxr_string">"sit"</span>, <span class="jxr_string">"application/x-stuffit"</span>);
<a class="jxr_linenumber" name="205" href="#205">205</a> EXT2MIME.put(<span class="jxr_string">"snd"</span>, <span class="jxr_string">"audio/basic"</span>);
<a class="jxr_linenumber" name="206" href="#206">206</a> EXT2MIME.put(<span class="jxr_string">"spc"</span>, <span class="jxr_string">"application/x-pkcs7-certificates"</span>);
<a class="jxr_linenumber" name="207" href="#207">207</a> EXT2MIME.put(<span class="jxr_string">"spl"</span>, <span class="jxr_string">"application/futuresplash"</span>);
<a class="jxr_linenumber" name="208" href="#208">208</a> EXT2MIME.put(<span class="jxr_string">"src"</span>, <span class="jxr_string">"application/x-wais-source"</span>);
<a class="jxr_linenumber" name="209" href="#209">209</a> EXT2MIME.put(<span class="jxr_string">"sst"</span>, <span class="jxr_string">"application/vnd.ms-pkicertstore"</span>);
<a class="jxr_linenumber" name="210" href="#210">210</a> EXT2MIME.put(<span class="jxr_string">"stl"</span>, <span class="jxr_string">"application/vnd.ms-pkistl"</span>);
<a class="jxr_linenumber" name="211" href="#211">211</a> EXT2MIME.put(<span class="jxr_string">"stm"</span>, <span class="jxr_string">"text/html"</span>);
<a class="jxr_linenumber" name="212" href="#212">212</a> EXT2MIME.put(<span class="jxr_string">"svg"</span>, <span class="jxr_string">"image/svg+xml"</span>);
<a class="jxr_linenumber" name="213" href="#213">213</a> EXT2MIME.put(<span class="jxr_string">"swf"</span>, <span class="jxr_string">"application/x-shockwave-flash"</span>);
<a class="jxr_linenumber" name="214" href="#214">214</a> EXT2MIME.put(<span class="jxr_string">"t"</span>, <span class="jxr_string">"application/x-troff"</span>);
<a class="jxr_linenumber" name="215" href="#215">215</a> EXT2MIME.put(<span class="jxr_string">"tar"</span>, <span class="jxr_string">"application/x-tar"</span>);
<a class="jxr_linenumber" name="216" href="#216">216</a> EXT2MIME.put(<span class="jxr_string">"tcl"</span>, <span class="jxr_string">"application/x-tcl"</span>);
<a class="jxr_linenumber" name="217" href="#217">217</a> EXT2MIME.put(<span class="jxr_string">"tex"</span>, <span class="jxr_string">"application/x-tex"</span>);
<a class="jxr_linenumber" name="218" href="#218">218</a> EXT2MIME.put(<span class="jxr_string">"texi"</span>, <span class="jxr_string">"application/x-texinfo"</span>);
<a class="jxr_linenumber" name="219" href="#219">219</a> EXT2MIME.put(<span class="jxr_string">"texinfo"</span>, <span class="jxr_string">"application/x-texinfo"</span>);
<a class="jxr_linenumber" name="220" href="#220">220</a> EXT2MIME.put(<span class="jxr_string">"tgz"</span>, <span class="jxr_string">"application/x-compressed"</span>);
<a class="jxr_linenumber" name="221" href="#221">221</a> EXT2MIME.put(<span class="jxr_string">"tif"</span>, <span class="jxr_string">"image/tiff"</span>);
<a class="jxr_linenumber" name="222" href="#222">222</a> EXT2MIME.put(<span class="jxr_string">"tiff"</span>, <span class="jxr_string">"image/tiff"</span>);
<a class="jxr_linenumber" name="223" href="#223">223</a> EXT2MIME.put(<span class="jxr_string">"tr"</span>, <span class="jxr_string">"application/x-troff"</span>);
<a class="jxr_linenumber" name="224" href="#224">224</a> EXT2MIME.put(<span class="jxr_string">"trm"</span>, <span class="jxr_string">"application/x-msterminal"</span>);
<a class="jxr_linenumber" name="225" href="#225">225</a> EXT2MIME.put(<span class="jxr_string">"tsv"</span>, <span class="jxr_string">"text/tab-separated-values"</span>);
<a class="jxr_linenumber" name="226" href="#226">226</a> EXT2MIME.put(<span class="jxr_string">"txt"</span>, <span class="jxr_string">"text/plain"</span>);
<a class="jxr_linenumber" name="227" href="#227">227</a> EXT2MIME.put(<span class="jxr_string">"uls"</span>, <span class="jxr_string">"text/iuls"</span>);
<a class="jxr_linenumber" name="228" href="#228">228</a> EXT2MIME.put(<span class="jxr_string">"ustar"</span>, <span class="jxr_string">"application/x-ustar"</span>);
<a class="jxr_linenumber" name="229" href="#229">229</a> EXT2MIME.put(<span class="jxr_string">"vcf"</span>, <span class="jxr_string">"text/x-vcard"</span>);
<a class="jxr_linenumber" name="230" href="#230">230</a> EXT2MIME.put(<span class="jxr_string">"vrml"</span>, <span class="jxr_string">"x-world/x-vrml"</span>);
<a class="jxr_linenumber" name="231" href="#231">231</a> EXT2MIME.put(<span class="jxr_string">"wav"</span>, <span class="jxr_string">"audio/x-wav"</span>);
<a class="jxr_linenumber" name="232" href="#232">232</a> EXT2MIME.put(<span class="jxr_string">"wcm"</span>, <span class="jxr_string">"application/vnd.ms-works"</span>);
<a class="jxr_linenumber" name="233" href="#233">233</a> EXT2MIME.put(<span class="jxr_string">"wdb"</span>, <span class="jxr_string">"application/vnd.ms-works"</span>);
<a class="jxr_linenumber" name="234" href="#234">234</a> EXT2MIME.put(<span class="jxr_string">"wmf"</span>, <span class="jxr_string">"application/x-msmetafile"</span>);
<a class="jxr_linenumber" name="235" href="#235">235</a> EXT2MIME.put(<span class="jxr_string">"wps"</span>, <span class="jxr_string">"application/vnd.ms-works"</span>);
<a class="jxr_linenumber" name="236" href="#236">236</a> EXT2MIME.put(<span class="jxr_string">"wri"</span>, <span class="jxr_string">"application/x-mswrite"</span>);
<a class="jxr_linenumber" name="237" href="#237">237</a> EXT2MIME.put(<span class="jxr_string">"wrl"</span>, <span class="jxr_string">"x-world/x-vrml"</span>);
<a class="jxr_linenumber" name="238" href="#238">238</a> EXT2MIME.put(<span class="jxr_string">"wrz"</span>, <span class="jxr_string">"x-world/x-vrml"</span>);
<a class="jxr_linenumber" name="239" href="#239">239</a> EXT2MIME.put(<span class="jxr_string">"xaf"</span>, <span class="jxr_string">"x-world/x-vrml"</span>);
<a class="jxr_linenumber" name="240" href="#240">240</a> EXT2MIME.put(<span class="jxr_string">"xbm"</span>, <span class="jxr_string">"image/x-xbitmap"</span>);
<a class="jxr_linenumber" name="241" href="#241">241</a> EXT2MIME.put(<span class="jxr_string">"xla"</span>, <span class="jxr_string">"application/vnd.ms-excel"</span>);
<a class="jxr_linenumber" name="242" href="#242">242</a> EXT2MIME.put(<span class="jxr_string">"xlc"</span>, <span class="jxr_string">"application/vnd.ms-excel"</span>);
<a class="jxr_linenumber" name="243" href="#243">243</a> EXT2MIME.put(<span class="jxr_string">"xlm"</span>, <span class="jxr_string">"application/vnd.ms-excel"</span>);
<a class="jxr_linenumber" name="244" href="#244">244</a> EXT2MIME.put(<span class="jxr_string">"xls"</span>, <span class="jxr_string">"application/vnd.ms-excel"</span>);
<a class="jxr_linenumber" name="245" href="#245">245</a> EXT2MIME.put(<span class="jxr_string">"xlsx"</span>, <span class="jxr_string">"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"</span>);
<a class="jxr_linenumber" name="246" href="#246">246</a> EXT2MIME.put(<span class="jxr_string">"xlt"</span>, <span class="jxr_string">"application/vnd.ms-excel"</span>);
<a class="jxr_linenumber" name="247" href="#247">247</a> EXT2MIME.put(<span class="jxr_string">"xltx"</span>, <span class="jxr_string">"application/vnd.openxmlformats-officedocument.spreadsheetml.template"</span>);
<a class="jxr_linenumber" name="248" href="#248">248</a> EXT2MIME.put(<span class="jxr_string">"xlw"</span>, <span class="jxr_string">"application/vnd.ms-excel"</span>);
<a class="jxr_linenumber" name="249" href="#249">249</a> EXT2MIME.put(<span class="jxr_string">"xml"</span>, <span class="jxr_string">"text/xml"</span>);
<a class="jxr_linenumber" name="250" href="#250">250</a> EXT2MIME.put(<span class="jxr_string">"xof"</span>, <span class="jxr_string">"x-world/x-vrml"</span>);
<a class="jxr_linenumber" name="251" href="#251">251</a> EXT2MIME.put(<span class="jxr_string">"xpm"</span>, <span class="jxr_string">"image/x-xpixmap"</span>);
<a class="jxr_linenumber" name="252" href="#252">252</a> EXT2MIME.put(<span class="jxr_string">"xwd"</span>, <span class="jxr_string">"image/x-xwindowdump"</span>);
<a class="jxr_linenumber" name="253" href="#253">253</a> EXT2MIME.put(<span class="jxr_string">"z"</span>, <span class="jxr_string">"application/x-compress"</span>);
<a class="jxr_linenumber" name="254" href="#254">254</a> EXT2MIME.put(<span class="jxr_string">"zip"</span>, <span class="jxr_string">"application/zip"</span>);
<a class="jxr_linenumber" name="255" href="#255">255</a>
<a class="jxr_linenumber" name="256" href="#256">256</a> <em class="jxr_comment">// MIME type to extension</em>
<a class="jxr_linenumber" name="257" href="#257">257</a> MIME2EXT.put(<span class="jxr_string">"application/octet-stream"</span>, <span class="jxr_string">""</span>);
<a class="jxr_linenumber" name="258" href="#258">258</a> MIME2EXT.put(<span class="jxr_string">"application/envoy"</span>, <span class="jxr_string">"evy"</span>);
<a class="jxr_linenumber" name="259" href="#259">259</a> MIME2EXT.put(<span class="jxr_string">"application/epub+zip"</span>, <span class="jxr_string">"epub"</span>);
<a class="jxr_linenumber" name="260" href="#260">260</a> MIME2EXT.put(<span class="jxr_string">"application/fractals"</span>, <span class="jxr_string">"fif"</span>);
<a class="jxr_linenumber" name="261" href="#261">261</a> MIME2EXT.put(<span class="jxr_string">"application/futuresplash"</span>, <span class="jxr_string">"spl"</span>);
<a class="jxr_linenumber" name="262" href="#262">262</a> MIME2EXT.put(<span class="jxr_string">"application/hta"</span>, <span class="jxr_string">"hta"</span>);
<a class="jxr_linenumber" name="263" href="#263">263</a> MIME2EXT.put(<span class="jxr_string">"application/java-archive"</span>, <span class="jxr_string">"jar"</span>);
<a class="jxr_linenumber" name="264" href="#264">264</a> MIME2EXT.put(<span class="jxr_string">"application/java-serialized-object"</span>, <span class="jxr_string">"ser"</span>);
<a class="jxr_linenumber" name="265" href="#265">265</a> MIME2EXT.put(<span class="jxr_string">"application/java-vm"</span>, <span class="jxr_string">"class"</span>);
<a class="jxr_linenumber" name="266" href="#266">266</a> MIME2EXT.put(<span class="jxr_string">"application/javascript"</span>, <span class="jxr_string">"js"</span>);
<a class="jxr_linenumber" name="267" href="#267">267</a> MIME2EXT.put(<span class="jxr_string">"application/json"</span>, <span class="jxr_string">"json"</span>);
<a class="jxr_linenumber" name="268" href="#268">268</a> MIME2EXT.put(<span class="jxr_string">"application/mac-binhex40"</span>, <span class="jxr_string">"hqx"</span>);
<a class="jxr_linenumber" name="269" href="#269">269</a> MIME2EXT.put(<span class="jxr_string">"application/msword"</span>, <span class="jxr_string">"doc"</span>);
<a class="jxr_linenumber" name="270" href="#270">270</a> MIME2EXT.put(<span class="jxr_string">"application/oda"</span>, <span class="jxr_string">"oda"</span>);
<a class="jxr_linenumber" name="271" href="#271">271</a> MIME2EXT.put(<span class="jxr_string">"application/olescript"</span>, <span class="jxr_string">"axs"</span>);
<a class="jxr_linenumber" name="272" href="#272">272</a> MIME2EXT.put(<span class="jxr_string">"application/onenote"</span>, <span class="jxr_string">"onetoc"</span>);
<a class="jxr_linenumber" name="273" href="#273">273</a> MIME2EXT.put(<span class="jxr_string">"application/pdf"</span>, <span class="jxr_string">"pdf"</span>);
<a class="jxr_linenumber" name="274" href="#274">274</a> MIME2EXT.put(<span class="jxr_string">"application/pics-rules"</span>, <span class="jxr_string">"prf"</span>);
<a class="jxr_linenumber" name="275" href="#275">275</a> MIME2EXT.put(<span class="jxr_string">"application/pkcs10"</span>, <span class="jxr_string">"p10"</span>);
<a class="jxr_linenumber" name="276" href="#276">276</a> MIME2EXT.put(<span class="jxr_string">"application/pkix-crl"</span>, <span class="jxr_string">"crl"</span>);
<a class="jxr_linenumber" name="277" href="#277">277</a> MIME2EXT.put(<span class="jxr_string">"application/postscript"</span>, <span class="jxr_string">"ps"</span>);
<a class="jxr_linenumber" name="278" href="#278">278</a> MIME2EXT.put(<span class="jxr_string">"application/rtf"</span>, <span class="jxr_string">"rtf"</span>);
<a class="jxr_linenumber" name="279" href="#279">279</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.apple.keynote"</span>, <span class="jxr_string">"key"</span>);
<a class="jxr_linenumber" name="280" href="#280">280</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.apple.numbers"</span>, <span class="jxr_string">"numbers"</span>);
<a class="jxr_linenumber" name="281" href="#281">281</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.apple.pages"</span>, <span class="jxr_string">"pages"</span>);
<a class="jxr_linenumber" name="282" href="#282">282</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.framemaker"</span>, <span class="jxr_string">"fm"</span>);
<a class="jxr_linenumber" name="283" href="#283">283</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.ms-excel"</span>, <span class="jxr_string">"xls"</span>);
<a class="jxr_linenumber" name="284" href="#284">284</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.ms-pkicertstore"</span>, <span class="jxr_string">"sst"</span>);
<a class="jxr_linenumber" name="285" href="#285">285</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.ms-pkiseccat"</span>, <span class="jxr_string">"cat"</span>);
<a class="jxr_linenumber" name="286" href="#286">286</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.ms-pkistl"</span>, <span class="jxr_string">"stl"</span>);
<a class="jxr_linenumber" name="287" href="#287">287</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.ms-powerpoint"</span>, <span class="jxr_string">"ppt"</span>);
<a class="jxr_linenumber" name="288" href="#288">288</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.ms-project"</span>, <span class="jxr_string">"mpp"</span>);
<a class="jxr_linenumber" name="289" href="#289">289</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.ms-works"</span>, <span class="jxr_string">"wps"</span>);
<a class="jxr_linenumber" name="290" href="#290">290</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.chart"</span>, <span class="jxr_string">"odc"</span>);
<a class="jxr_linenumber" name="291" href="#291">291</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.chart-template"</span>, <span class="jxr_string">"otc"</span>);
<a class="jxr_linenumber" name="292" href="#292">292</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.database"</span>, <span class="jxr_string">"odb"</span>);
<a class="jxr_linenumber" name="293" href="#293">293</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.formula"</span>, <span class="jxr_string">"odf"</span>);
<a class="jxr_linenumber" name="294" href="#294">294</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.formula-template"</span>, <span class="jxr_string">"odft"</span>);
<a class="jxr_linenumber" name="295" href="#295">295</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.graphics"</span>, <span class="jxr_string">"odg"</span>);
<a class="jxr_linenumber" name="296" href="#296">296</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.graphics-template"</span>, <span class="jxr_string">"otg"</span>);
<a class="jxr_linenumber" name="297" href="#297">297</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.image"</span>, <span class="jxr_string">"odi"</span>);
<a class="jxr_linenumber" name="298" href="#298">298</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.image-template"</span>, <span class="jxr_string">"oti"</span>);
<a class="jxr_linenumber" name="299" href="#299">299</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.presentation"</span>, <span class="jxr_string">"odp"</span>);
<a class="jxr_linenumber" name="300" href="#300">300</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.presentation-template"</span>, <span class="jxr_string">"otp"</span>);
<a class="jxr_linenumber" name="301" href="#301">301</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.spreadsheet"</span>, <span class="jxr_string">"ods"</span>);
<a class="jxr_linenumber" name="302" href="#302">302</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.spreadsheet-template"</span>, <span class="jxr_string">"ots"</span>);
<a class="jxr_linenumber" name="303" href="#303">303</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.text"</span>, <span class="jxr_string">"odt"</span>);
<a class="jxr_linenumber" name="304" href="#304">304</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.text-master"</span>, <span class="jxr_string">"odm"</span>);
<a class="jxr_linenumber" name="305" href="#305">305</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.text-template"</span>, <span class="jxr_string">"ott"</span>);
<a class="jxr_linenumber" name="306" href="#306">306</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.oasis.opendocument.text-web"</span>, <span class="jxr_string">"oth"</span>);
<a class="jxr_linenumber" name="307" href="#307">307</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.openxmlformats-officedocument.presentationml.presentation"</span>, <span class="jxr_string">"pptx"</span>);
<a class="jxr_linenumber" name="308" href="#308">308</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.openxmlformats-officedocument.presentationml.slideshow"</span>, <span class="jxr_string">"ppsx"</span>);
<a class="jxr_linenumber" name="309" href="#309">309</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.openxmlformats-officedocument.presentationml.template"</span>, <span class="jxr_string">"potx"</span>);
<a class="jxr_linenumber" name="310" href="#310">310</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"</span>, <span class="jxr_string">"xlsx"</span>);
<a class="jxr_linenumber" name="311" href="#311">311</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.openxmlformats-officedocument.spreadsheetml.template"</span>, <span class="jxr_string">"xltx"</span>);
<a class="jxr_linenumber" name="312" href="#312">312</a> MIME2EXT.put(<span class="jxr_string">"application/winhlp"</span>, <span class="jxr_string">"hlp"</span>);
<a class="jxr_linenumber" name="313" href="#313">313</a> MIME2EXT.put(<span class="jxr_string">"application/x-cdf"</span>, <span class="jxr_string">"cdf"</span>);
<a class="jxr_linenumber" name="314" href="#314">314</a> MIME2EXT.put(<span class="jxr_string">"application/x-compress"</span>, <span class="jxr_string">"z"</span>);
<a class="jxr_linenumber" name="315" href="#315">315</a> MIME2EXT.put(<span class="jxr_string">"application/x-compressed"</span>, <span class="jxr_string">"tgz"</span>);
<a class="jxr_linenumber" name="316" href="#316">316</a> MIME2EXT.put(<span class="jxr_string">"application/x-cpio"</span>, <span class="jxr_string">"cpio"</span>);
<a class="jxr_linenumber" name="317" href="#317">317</a> MIME2EXT.put(<span class="jxr_string">"application/x-csh"</span>, <span class="jxr_string">"csh"</span>);
<a class="jxr_linenumber" name="318" href="#318">318</a> MIME2EXT.put(<span class="jxr_string">"application/x-director"</span>, <span class="jxr_string">"dxr"</span>);
<a class="jxr_linenumber" name="319" href="#319">319</a> MIME2EXT.put(<span class="jxr_string">"application/x-dvi"</span>, <span class="jxr_string">"dvi"</span>);
<a class="jxr_linenumber" name="320" href="#320">320</a> MIME2EXT.put(<span class="jxr_string">"application/x-gtar"</span>, <span class="jxr_string">"gtar"</span>);
<a class="jxr_linenumber" name="321" href="#321">321</a> MIME2EXT.put(<span class="jxr_string">"application/x-gzip"</span>, <span class="jxr_string">"gz"</span>);
<a class="jxr_linenumber" name="322" href="#322">322</a> MIME2EXT.put(<span class="jxr_string">"application/x-hdf"</span>, <span class="jxr_string">"hdf"</span>);
<a class="jxr_linenumber" name="323" href="#323">323</a> MIME2EXT.put(<span class="jxr_string">"application/x-internet-signup"</span>, <span class="jxr_string">"isp"</span>);
<a class="jxr_linenumber" name="324" href="#324">324</a> MIME2EXT.put(<span class="jxr_string">"application/x-iphone"</span>, <span class="jxr_string">"iii"</span>);
<a class="jxr_linenumber" name="325" href="#325">325</a> MIME2EXT.put(<span class="jxr_string">"application/x-javascript"</span>, <span class="jxr_string">"js"</span>);
<a class="jxr_linenumber" name="326" href="#326">326</a> MIME2EXT.put(<span class="jxr_string">"application/x-latex"</span>, <span class="jxr_string">"latex"</span>);
<a class="jxr_linenumber" name="327" href="#327">327</a> MIME2EXT.put(<span class="jxr_string">"application/x-msaccess"</span>, <span class="jxr_string">"mdb"</span>);
<a class="jxr_linenumber" name="328" href="#328">328</a> MIME2EXT.put(<span class="jxr_string">"application/x-mscardfile"</span>, <span class="jxr_string">"crd"</span>);
<a class="jxr_linenumber" name="329" href="#329">329</a> MIME2EXT.put(<span class="jxr_string">"application/x-msclip"</span>, <span class="jxr_string">"clp"</span>);
<a class="jxr_linenumber" name="330" href="#330">330</a> MIME2EXT.put(<span class="jxr_string">"application/x-msdownload"</span>, <span class="jxr_string">"dll"</span>);
<a class="jxr_linenumber" name="331" href="#331">331</a> MIME2EXT.put(<span class="jxr_string">"application/x-msmediaview"</span>, <span class="jxr_string">"mvb"</span>);
<a class="jxr_linenumber" name="332" href="#332">332</a> MIME2EXT.put(<span class="jxr_string">"application/x-msmetafile"</span>, <span class="jxr_string">"wmf"</span>);
<a class="jxr_linenumber" name="333" href="#333">333</a> MIME2EXT.put(<span class="jxr_string">"application/x-mspublisher"</span>, <span class="jxr_string">"pub"</span>);
<a class="jxr_linenumber" name="334" href="#334">334</a> MIME2EXT.put(<span class="jxr_string">"application/x-msschedule"</span>, <span class="jxr_string">"scd"</span>);
<a class="jxr_linenumber" name="335" href="#335">335</a> MIME2EXT.put(<span class="jxr_string">"application/x-msterminal"</span>, <span class="jxr_string">"trm"</span>);
<a class="jxr_linenumber" name="336" href="#336">336</a> MIME2EXT.put(<span class="jxr_string">"application/x-mswrite"</span>, <span class="jxr_string">"wri"</span>);
<a class="jxr_linenumber" name="337" href="#337">337</a> MIME2EXT.put(<span class="jxr_string">"application/x-perfmon"</span>, <span class="jxr_string">"pmw"</span>);
<a class="jxr_linenumber" name="338" href="#338">338</a> MIME2EXT.put(<span class="jxr_string">"application/x-pkcs12"</span>, <span class="jxr_string">"pfx"</span>);
<a class="jxr_linenumber" name="339" href="#339">339</a> MIME2EXT.put(<span class="jxr_string">"application/x-pkcs12v"</span>, <span class="jxr_string">"p12"</span>);
<a class="jxr_linenumber" name="340" href="#340">340</a> MIME2EXT.put(<span class="jxr_string">"application/x-pkcs7-certificates"</span>, <span class="jxr_string">"p7b"</span>);
<a class="jxr_linenumber" name="341" href="#341">341</a> MIME2EXT.put(<span class="jxr_string">"application/x-pkcs7-certificates"</span>, <span class="jxr_string">"spc"</span>);
<a class="jxr_linenumber" name="342" href="#342">342</a> MIME2EXT.put(<span class="jxr_string">"application/x-pkcs7-certreqresp"</span>, <span class="jxr_string">"p7r"</span>);
<a class="jxr_linenumber" name="343" href="#343">343</a> MIME2EXT.put(<span class="jxr_string">"application/x-pkcs7-mime"</span>, <span class="jxr_string">"p7m"</span>);
<a class="jxr_linenumber" name="344" href="#344">344</a> MIME2EXT.put(<span class="jxr_string">"application/x-pkcs7-signature"</span>, <span class="jxr_string">"p7s"</span>);
<a class="jxr_linenumber" name="345" href="#345">345</a> MIME2EXT.put(<span class="jxr_string">"application/x-sh"</span>, <span class="jxr_string">"sh"</span>);
<a class="jxr_linenumber" name="346" href="#346">346</a> MIME2EXT.put(<span class="jxr_string">"application/x-shar"</span>, <span class="jxr_string">"shar"</span>);
<a class="jxr_linenumber" name="347" href="#347">347</a> MIME2EXT.put(<span class="jxr_string">"application/x-shockwave-flash"</span>, <span class="jxr_string">"swf"</span>);
<a class="jxr_linenumber" name="348" href="#348">348</a> MIME2EXT.put(<span class="jxr_string">"application/x-stuffit"</span>, <span class="jxr_string">"sit"</span>);
<a class="jxr_linenumber" name="349" href="#349">349</a> MIME2EXT.put(<span class="jxr_string">"application/x-tar"</span>, <span class="jxr_string">"tar"</span>);
<a class="jxr_linenumber" name="350" href="#350">350</a> MIME2EXT.put(<span class="jxr_string">"application/x-tcl"</span>, <span class="jxr_string">"tcl"</span>);
<a class="jxr_linenumber" name="351" href="#351">351</a> MIME2EXT.put(<span class="jxr_string">"application/x-tex"</span>, <span class="jxr_string">"tex"</span>);
<a class="jxr_linenumber" name="352" href="#352">352</a> MIME2EXT.put(<span class="jxr_string">"application/x-texinfo"</span>, <span class="jxr_string">"texinfo"</span>);
<a class="jxr_linenumber" name="353" href="#353">353</a> MIME2EXT.put(<span class="jxr_string">"application/x-troff-man"</span>, <span class="jxr_string">"man"</span>);
<a class="jxr_linenumber" name="354" href="#354">354</a> MIME2EXT.put(<span class="jxr_string">"application/x-troff-me"</span>, <span class="jxr_string">"me"</span>);
<a class="jxr_linenumber" name="355" href="#355">355</a> MIME2EXT.put(<span class="jxr_string">"application/x-troff-ms"</span>, <span class="jxr_string">"ms"</span>);
<a class="jxr_linenumber" name="356" href="#356">356</a> MIME2EXT.put(<span class="jxr_string">"application/x-troff"</span>, <span class="jxr_string">"tr"</span>);
<a class="jxr_linenumber" name="357" href="#357">357</a> MIME2EXT.put(<span class="jxr_string">"application/x-ustar"</span>, <span class="jxr_string">"ustar"</span>);
<a class="jxr_linenumber" name="358" href="#358">358</a> MIME2EXT.put(<span class="jxr_string">"application/x-wais-source"</span>, <span class="jxr_string">"src"</span>);
<a class="jxr_linenumber" name="359" href="#359">359</a> MIME2EXT.put(<span class="jxr_string">"application/x-x509-ca-cert"</span>, <span class="jxr_string">"cer"</span>);
<a class="jxr_linenumber" name="360" href="#360">360</a> MIME2EXT.put(<span class="jxr_string">"application/ynd.ms-pkipko"</span>, <span class="jxr_string">"vpko"</span>);
<a class="jxr_linenumber" name="361" href="#361">361</a> MIME2EXT.put(<span class="jxr_string">"application/zip"</span>, <span class="jxr_string">"zip"</span>);
<a class="jxr_linenumber" name="362" href="#362">362</a> MIME2EXT.put(<span class="jxr_string">"audio/basic"</span>, <span class="jxr_string">"snd"</span>);
<a class="jxr_linenumber" name="363" href="#363">363</a> MIME2EXT.put(<span class="jxr_string">"audio/flac"</span>, <span class="jxr_string">"flac"</span>);
<a class="jxr_linenumber" name="364" href="#364">364</a> MIME2EXT.put(<span class="jxr_string">"audio/mp4"</span>, <span class="jxr_string">"m4a"</span>);
<a class="jxr_linenumber" name="365" href="#365">365</a> MIME2EXT.put(<span class="jxr_string">"audio/mid"</span>, <span class="jxr_string">"mid"</span>);
<a class="jxr_linenumber" name="366" href="#366">366</a> MIME2EXT.put(<span class="jxr_string">"audio/midi"</span>, <span class="jxr_string">"mid"</span>);
<a class="jxr_linenumber" name="367" href="#367">367</a> MIME2EXT.put(<span class="jxr_string">"audio/mpeg"</span>, <span class="jxr_string">"mp3"</span>);
<a class="jxr_linenumber" name="368" href="#368">368</a> MIME2EXT.put(<span class="jxr_string">"audio/ogg"</span>, <span class="jxr_string">"ogg"</span>);
<a class="jxr_linenumber" name="369" href="#369">369</a> MIME2EXT.put(<span class="jxr_string">"audio/x-aiff"</span>, <span class="jxr_string">"aif"</span>);
<a class="jxr_linenumber" name="370" href="#370">370</a> MIME2EXT.put(<span class="jxr_string">"audio/x-mpegurl"</span>, <span class="jxr_string">"m3u"</span>);
<a class="jxr_linenumber" name="371" href="#371">371</a> MIME2EXT.put(<span class="jxr_string">"audio/x-ms-wax"</span>, <span class="jxr_string">"wax"</span>);
<a class="jxr_linenumber" name="372" href="#372">372</a> MIME2EXT.put(<span class="jxr_string">"audio/x-ms-wma"</span>, <span class="jxr_string">"wma"</span>);
<a class="jxr_linenumber" name="373" href="#373">373</a> MIME2EXT.put(<span class="jxr_string">"audio/x-pn-realaudio"</span>, <span class="jxr_string">"ram"</span>);
<a class="jxr_linenumber" name="374" href="#374">374</a> MIME2EXT.put(<span class="jxr_string">"audio/x-wav"</span>, <span class="jxr_string">"wav"</span>);
<a class="jxr_linenumber" name="375" href="#375">375</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.openxmlformats-officedocument.wordprocessingml.template"</span>, <span class="jxr_string">"doct"</span>);
<a class="jxr_linenumber" name="376" href="#376">376</a> MIME2EXT.put(<span class="jxr_string">"application/vnd.openxmlformats-officedocument.wordprocessingml.document"</span>, <span class="jxr_string">"docx"</span>);
<a class="jxr_linenumber" name="377" href="#377">377</a> MIME2EXT.put(<span class="jxr_string">"image/bmp"</span>, <span class="jxr_string">"bmp"</span>);
<a class="jxr_linenumber" name="378" href="#378">378</a> MIME2EXT.put(<span class="jxr_string">"image/cis-cod"</span>, <span class="jxr_string">"cod"</span>);
<a class="jxr_linenumber" name="379" href="#379">379</a> MIME2EXT.put(<span class="jxr_string">"image/gif"</span>, <span class="jxr_string">"gif"</span>);
<a class="jxr_linenumber" name="380" href="#380">380</a> MIME2EXT.put(<span class="jxr_string">"image/ief"</span>, <span class="jxr_string">"ief"</span>);
<a class="jxr_linenumber" name="381" href="#381">381</a> MIME2EXT.put(<span class="jxr_string">"image/jpeg"</span>, <span class="jxr_string">"jpeg"</span>);
<a class="jxr_linenumber" name="382" href="#382">382</a> MIME2EXT.put(<span class="jxr_string">"image/pipeg"</span>, <span class="jxr_string">"jfif"</span>);
<a class="jxr_linenumber" name="383" href="#383">383</a> MIME2EXT.put(<span class="jxr_string">"image/png"</span>, <span class="jxr_string">"png"</span>);
<a class="jxr_linenumber" name="384" href="#384">384</a> MIME2EXT.put(<span class="jxr_string">"image/svg+xml"</span>, <span class="jxr_string">"svg"</span>);
<a class="jxr_linenumber" name="385" href="#385">385</a> MIME2EXT.put(<span class="jxr_string">"image/tiff"</span>, <span class="jxr_string">"tiff"</span>);
<a class="jxr_linenumber" name="386" href="#386">386</a> MIME2EXT.put(<span class="jxr_string">"image/x-cmu-raster"</span>, <span class="jxr_string">"ras"</span>);
<a class="jxr_linenumber" name="387" href="#387">387</a> MIME2EXT.put(<span class="jxr_string">"image/x-cmx"</span>, <span class="jxr_string">"cmx"</span>);
<a class="jxr_linenumber" name="388" href="#388">388</a> MIME2EXT.put(<span class="jxr_string">"image/x-icon"</span>, <span class="jxr_string">"ico"</span>);
<a class="jxr_linenumber" name="389" href="#389">389</a> MIME2EXT.put(<span class="jxr_string">"image/x-portable-anymap"</span>, <span class="jxr_string">"pnm"</span>);
<a class="jxr_linenumber" name="390" href="#390">390</a> MIME2EXT.put(<span class="jxr_string">"image/x-portable-bitmap"</span>, <span class="jxr_string">"pbm"</span>);
<a class="jxr_linenumber" name="391" href="#391">391</a> MIME2EXT.put(<span class="jxr_string">"image/x-portable-graymap"</span>, <span class="jxr_string">"pgm"</span>);
<a class="jxr_linenumber" name="392" href="#392">392</a> MIME2EXT.put(<span class="jxr_string">"image/x-portable-pixmap"</span>, <span class="jxr_string">"ppm"</span>);
<a class="jxr_linenumber" name="393" href="#393">393</a> MIME2EXT.put(<span class="jxr_string">"image/x-rgb"</span>, <span class="jxr_string">"rgb"</span>);
<a class="jxr_linenumber" name="394" href="#394">394</a> MIME2EXT.put(<span class="jxr_string">"image/x-xbitmap"</span>, <span class="jxr_string">"xbm"</span>);
<a class="jxr_linenumber" name="395" href="#395">395</a> MIME2EXT.put(<span class="jxr_string">"image/x-xpixmap"</span>, <span class="jxr_string">"xpm"</span>);
<a class="jxr_linenumber" name="396" href="#396">396</a> MIME2EXT.put(<span class="jxr_string">"image/x-xwindowdump"</span>, <span class="jxr_string">"xwd"</span>);
<a class="jxr_linenumber" name="397" href="#397">397</a> MIME2EXT.put(<span class="jxr_string">"message/rfc822"</span>, <span class="jxr_string">"mhtml"</span>);
<a class="jxr_linenumber" name="398" href="#398">398</a> MIME2EXT.put(<span class="jxr_string">"text/css"</span>, <span class="jxr_string">"css"</span>);
<a class="jxr_linenumber" name="399" href="#399">399</a> MIME2EXT.put(<span class="jxr_string">"text/html"</span>, <span class="jxr_string">"html"</span>);
<a class="jxr_linenumber" name="400" href="#400">400</a> MIME2EXT.put(<span class="jxr_string">"text/iuls"</span>, <span class="jxr_string">"uls"</span>);
<a class="jxr_linenumber" name="401" href="#401">401</a> MIME2EXT.put(<span class="jxr_string">"text/plain"</span>, <span class="jxr_string">"txt"</span>);
<a class="jxr_linenumber" name="402" href="#402">402</a> MIME2EXT.put(<span class="jxr_string">"text/richtext"</span>, <span class="jxr_string">"rtx"</span>);
<a class="jxr_linenumber" name="403" href="#403">403</a> MIME2EXT.put(<span class="jxr_string">"text/scriptlet"</span>, <span class="jxr_string">"sct"</span>);
<a class="jxr_linenumber" name="404" href="#404">404</a> MIME2EXT.put(<span class="jxr_string">"text/tab-separated-values"</span>, <span class="jxr_string">"tsv"</span>);
<a class="jxr_linenumber" name="405" href="#405">405</a> MIME2EXT.put(<span class="jxr_string">"text/webviewhtml"</span>, <span class="jxr_string">"htt"</span>);
<a class="jxr_linenumber" name="406" href="#406">406</a> MIME2EXT.put(<span class="jxr_string">"text/x-component"</span>, <span class="jxr_string">"htc"</span>);
<a class="jxr_linenumber" name="407" href="#407">407</a> MIME2EXT.put(<span class="jxr_string">"text/x-setext"</span>, <span class="jxr_string">"etx"</span>);
<a class="jxr_linenumber" name="408" href="#408">408</a> MIME2EXT.put(<span class="jxr_string">"text/x-vcard"</span>, <span class="jxr_string">"vcf"</span>);
<a class="jxr_linenumber" name="409" href="#409">409</a> MIME2EXT.put(<span class="jxr_string">"text/xml"</span>, <span class="jxr_string">"xml"</span>);
<a class="jxr_linenumber" name="410" href="#410">410</a> MIME2EXT.put(<span class="jxr_string">"video/mp4"</span>, <span class="jxr_string">"mp4"</span>);
<a class="jxr_linenumber" name="411" href="#411">411</a> MIME2EXT.put(<span class="jxr_string">"video/mpeg"</span>, <span class="jxr_string">"mpeg"</span>);
<a class="jxr_linenumber" name="412" href="#412">412</a> MIME2EXT.put(<span class="jxr_string">"video/mpegv"</span>, <span class="jxr_string">"mpe"</span>);
<a class="jxr_linenumber" name="413" href="#413">413</a> MIME2EXT.put(<span class="jxr_string">"video/ogg"</span>, <span class="jxr_string">"ogv"</span>);
<a class="jxr_linenumber" name="414" href="#414">414</a> MIME2EXT.put(<span class="jxr_string">"video/quicktime"</span>, <span class="jxr_string">"mov"</span>);
<a class="jxr_linenumber" name="415" href="#415">415</a> MIME2EXT.put(<span class="jxr_string">"video/quicktime"</span>, <span class="jxr_string">"qt"</span>);
<a class="jxr_linenumber" name="416" href="#416">416</a> MIME2EXT.put(<span class="jxr_string">"video/x-f4v"</span>, <span class="jxr_string">"f4v"</span>);
<a class="jxr_linenumber" name="417" href="#417">417</a> MIME2EXT.put(<span class="jxr_string">"video/x-fli"</span>, <span class="jxr_string">"fli"</span>);
<a class="jxr_linenumber" name="418" href="#418">418</a> MIME2EXT.put(<span class="jxr_string">"video/x-flv"</span>, <span class="jxr_string">"flv"</span>);
<a class="jxr_linenumber" name="419" href="#419">419</a> MIME2EXT.put(<span class="jxr_string">"video/x-la-asf"</span>, <span class="jxr_string">"lsf"</span>);
<a class="jxr_linenumber" name="420" href="#420">420</a> MIME2EXT.put(<span class="jxr_string">"video/x-la-asf"</span>, <span class="jxr_string">"lsx"</span>);
<a class="jxr_linenumber" name="421" href="#421">421</a> MIME2EXT.put(<span class="jxr_string">"video/x-m4v"</span>, <span class="jxr_string">"m4v"</span>);
<a class="jxr_linenumber" name="422" href="#422">422</a> MIME2EXT.put(<span class="jxr_string">"video/x-ms-asf"</span>, <span class="jxr_string">"asf"</span>);
<a class="jxr_linenumber" name="423" href="#423">423</a> MIME2EXT.put(<span class="jxr_string">"video/x-msvideo"</span>, <span class="jxr_string">"avi"</span>);
<a class="jxr_linenumber" name="424" href="#424">424</a> MIME2EXT.put(<span class="jxr_string">"video/x-sgi-movie"</span>, <span class="jxr_string">"movie"</span>);
<a class="jxr_linenumber" name="425" href="#425">425</a> MIME2EXT.put(<span class="jxr_string">"x-world/x-vrml"</span>, <span class="jxr_string">"vrml"</span>);
<a class="jxr_linenumber" name="426" href="#426">426</a> }
<a class="jxr_linenumber" name="427" href="#427">427</a>
<a class="jxr_linenumber" name="428" href="#428">428</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="429" href="#429">429</a> <em class="jxr_javadoccomment"> * Returns the MIME type for file extension.</em>
<a class="jxr_linenumber" name="430" href="#430">430</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="431" href="#431">431</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> String getMIMEType(String ext) {
<a class="jxr_linenumber" name="432" href="#432">432</a> <strong class="jxr_keyword">if</strong> (ext == <strong class="jxr_keyword">null</strong>) {
<a class="jxr_linenumber" name="433" href="#433">433</a> <strong class="jxr_keyword">return</strong> EXT2MIME.get(<span class="jxr_string">""</span>);
<a class="jxr_linenumber" name="434" href="#434">434</a> }
<a class="jxr_linenumber" name="435" href="#435">435</a>
<a class="jxr_linenumber" name="436" href="#436">436</a> <strong class="jxr_keyword">int</strong> x = ext.lastIndexOf('.');
<a class="jxr_linenumber" name="437" href="#437">437</a> <strong class="jxr_keyword">if</strong> (x &gt; -1) {
<a class="jxr_linenumber" name="438" href="#438">438</a> ext = ext.substring(x + 1);
<a class="jxr_linenumber" name="439" href="#439">439</a> }
<a class="jxr_linenumber" name="440" href="#440">440</a>
<a class="jxr_linenumber" name="441" href="#441">441</a> String mime = EXT2MIME.get(ext.toLowerCase());
<a class="jxr_linenumber" name="442" href="#442">442</a> <strong class="jxr_keyword">if</strong> (mime == <strong class="jxr_keyword">null</strong>) {
<a class="jxr_linenumber" name="443" href="#443">443</a> mime = URLConnection.getFileNameMap().getContentTypeFor(<span class="jxr_string">"x."</span> + ext);
<a class="jxr_linenumber" name="444" href="#444">444</a> }
<a class="jxr_linenumber" name="445" href="#445">445</a> <strong class="jxr_keyword">if</strong> (mime == <strong class="jxr_keyword">null</strong>) {
<a class="jxr_linenumber" name="446" href="#446">446</a> mime = EXT2MIME.get(<span class="jxr_string">""</span>);
<a class="jxr_linenumber" name="447" href="#447">447</a> }
<a class="jxr_linenumber" name="448" href="#448">448</a>
<a class="jxr_linenumber" name="449" href="#449">449</a> <strong class="jxr_keyword">return</strong> mime;
<a class="jxr_linenumber" name="450" href="#450">450</a> }
<a class="jxr_linenumber" name="451" href="#451">451</a>
<a class="jxr_linenumber" name="452" href="#452">452</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="453" href="#453">453</a> <em class="jxr_javadoccomment"> * Returns the MIME type for a file.</em>
<a class="jxr_linenumber" name="454" href="#454">454</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="455" href="#455">455</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> String getMIMEType(File file) {
<a class="jxr_linenumber" name="456" href="#456">456</a> <strong class="jxr_keyword">if</strong> (file == <strong class="jxr_keyword">null</strong>) {
<a class="jxr_linenumber" name="457" href="#457">457</a> <strong class="jxr_keyword">return</strong> getMIMEType(<span class="jxr_string">""</span>);
<a class="jxr_linenumber" name="458" href="#458">458</a> }
<a class="jxr_linenumber" name="459" href="#459">459</a>
<a class="jxr_linenumber" name="460" href="#460">460</a> <strong class="jxr_keyword">return</strong> getMIMEType(file.getName());
<a class="jxr_linenumber" name="461" href="#461">461</a> }
<a class="jxr_linenumber" name="462" href="#462">462</a>
<a class="jxr_linenumber" name="463" href="#463">463</a> <em class="jxr_javadoccomment">/**</em>
<a class="jxr_linenumber" name="464" href="#464">464</a> <em class="jxr_javadoccomment"> * Guesses a extension from a MIME type.</em>
<a class="jxr_linenumber" name="465" href="#465">465</a> <em class="jxr_javadoccomment"> */</em>
<a class="jxr_linenumber" name="466" href="#466">466</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> String getExtension(String mimeType) {
<a class="jxr_linenumber" name="467" href="#467">467</a> <strong class="jxr_keyword">if</strong> (mimeType == <strong class="jxr_keyword">null</strong>) {
<a class="jxr_linenumber" name="468" href="#468">468</a> <strong class="jxr_keyword">return</strong> <span class="jxr_string">""</span>;
<a class="jxr_linenumber" name="469" href="#469">469</a> }
<a class="jxr_linenumber" name="470" href="#470">470</a>
<a class="jxr_linenumber" name="471" href="#471">471</a> <strong class="jxr_keyword">int</strong> x = mimeType.indexOf(';');
<a class="jxr_linenumber" name="472" href="#472">472</a> <strong class="jxr_keyword">if</strong> (x &gt; -1) {
<a class="jxr_linenumber" name="473" href="#473">473</a> mimeType = mimeType.substring(0, x);
<a class="jxr_linenumber" name="474" href="#474">474</a> }
<a class="jxr_linenumber" name="475" href="#475">475</a> mimeType = mimeType.trim().toLowerCase(Locale.ENGLISH);
<a class="jxr_linenumber" name="476" href="#476">476</a>
<a class="jxr_linenumber" name="477" href="#477">477</a> String extension = MIME2EXT.get(mimeType);
<a class="jxr_linenumber" name="478" href="#478">478</a> <strong class="jxr_keyword">return</strong> ((extension == <strong class="jxr_keyword">null</strong> || extension.length() == 0) ? <span class="jxr_string">""</span> : <span class="jxr_string">"."</span> + extension);
<a class="jxr_linenumber" name="479" href="#479">479</a> }
<a class="jxr_linenumber" name="480" href="#480">480</a> }
</pre>
<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
</html>