WEB.XML配置实现浏览器根据文件类型自动打开

我们用浏览器打开文件的时候会发现如果是doc文件, 会用记事本打开,出现乱码, 但是如果在web.xml里面配置了类型,浏览器就会根据配置的类型自动调用相应的程序打开

在 WEB.XML 配置常用文件类型

    
        doc
        application/vnd.ms-word
    
    
        gif
        image/gif
    
    
        htm
        text/html
    
    
        html
        text/html
    
    
        jnlp
        application/x-java-jnlp-file
    
    
        jpeg
        image/jpeg
    
    
        jpg
        image/jpeg
    
    
        js
        application/x-javascript
    
    
        pdf
        application/pdf
    
    
        png
        image/png
    
    
        rar
        application/x-rar-compressed
    
    
        txt
        text/plain
    
    
        xls
        application/vnd.ms-excel
    
    
        xml
        text/xml
    
    
        xul
        application/vnd.mozilla.xul-xml
    
    
        zhtml
        text/html
    
    
        zip
        application/x-zip
    
    
        zul
        text/html
    
    

你可能感兴趣的:(WEB.XML配置实现浏览器根据文件类型自动打开)