首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

在IE中通过a标签直接上载rar文件时以乱码方式打开

2012-12-19 
在IE中通过a标签直接下载rar文件时以乱码方式打开?在JSP的下载文件中,如果文件是rar类型的,一点击下载rar

在IE中通过a标签直接下载rar文件时以乱码方式打开

?

在JSP的下载文件中,如果文件是rar类型的,一点击下载rar文件就直接打开,并且出现乱码,右键另存为浏览器也是默认为html格式,一直以为是浏览器IE的问题,后来发现其实不关浏览器的问题,而是web.xml配置的问题,具体如下:

web.xml文件中配置<mime-mapping>下载文件类型
TOMCAT在默认情况下下载.rar的文件是把文件当作text打开,以至于IE打开RAR文件为乱码,如果遇到这种情况解决方法:

打开conf/web.xml,加入下面的代码.

在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<extension>doc</extension>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-type>application/msword</mime-type>
在IE中通过a标签直接上载rar文件时以乱码方式打开?</mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<extension>xls</extension>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-type>application/msexcel</mime-type>
在IE中通过a标签直接上载rar文件时以乱码方式打开?</mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<extension>pdf</extension>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-type>application/pdf</mime-type>
在IE中通过a标签直接上载rar文件时以乱码方式打开?</mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<extension>zip</extension>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-type>application/zip</mime-type>
在IE中通过a标签直接上载rar文件时以乱码方式打开?</mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<extension>rar</extension>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-type>application/rar</mime-type>
在IE中通过a标签直接上载rar文件时以乱码方式打开?</mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<extension>txt</extension>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-type>application/txt</mime-type>
在IE中通过a标签直接上载rar文件时以乱码方式打开?</mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<extension>chm</extension>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-type>application/mshelp</mime-type>
在IE中通过a标签直接上载rar文件时以乱码方式打开?</mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<extension>mp3</extension>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<mime-type>audio/x-mpeg</mime-type>
在IE中通过a标签直接上载rar文件时以乱码方式打开?</mime-mapping>
在IE中通过a标签直接上载rar文件时以乱码方式打开


重启TOMCAT,清除IE缓存,再打开RAR的文件时就可以正常下载了.

不同的ContentType 会影响客户端所看到的效果.

默认的ContentType为 text/html 也就是juapk.com网页格式.

代码如:

在IE中通过a标签直接上载rar文件时以乱码方式打开?<% response.ContentType ="text/html" %>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<!--#i nclude virtual="/ContentType.html" -->

显示的为网页,而

在IE中通过a标签直接上载rar文件时以乱码方式打开?<% response.ContentType ="text/plain" %>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<!--#i nclude virtual="/sscript/ContentType.html" -->

则会显示html原代码.

以下为一些常用的 ContentType

在IE中通过a标签直接上载rar文件时以乱码方式打开GIF images
在IE中通过a标签直接上载rar文件时以乱码方式打开?<% response.ContentType ="image/gif" %>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<!--#i nclude virtual="/myimage.gif" -->
在IE中通过a标签直接上载rar文件时以乱码方式打开?JPEG images
在IE中通过a标签直接上载rar文件时以乱码方式打开?<% response.ContentType ="image/jpeg" %>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<!--#i nclude virtual="/myimage.jpeg" -->
在IE中通过a标签直接上载rar文件时以乱码方式打开?TIFF images
在IE中通过a标签直接上载rar文件时以乱码方式打开?<% response.ContentType ="image/tiff" %>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<!--#i nclude virtual="/myimage.tiff" -->
在IE中通过a标签直接上载rar文件时以乱码方式打开?MICROSOFT WORD document
在IE中通过a标签直接上载rar文件时以乱码方式打开?<% response.ContentType ="application/msword" %>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<!--#i nclude virtual="/myfile.doc" -->
在IE中通过a标签直接上载rar文件时以乱码方式打开?RTF document
在IE中通过a标签直接上载rar文件时以乱码方式打开?<% response.ContentType ="application/rtf" %>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<!--#i nclude virtual="/myfile.rtf" -->
在IE中通过a标签直接上载rar文件时以乱码方式打开?MICROSOFT EXCEL document
在IE中通过a标签直接上载rar文件时以乱码方式打开?<% response.ContentType ="application/x-excel" %>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<!--#i nclude virtual="/myfile.xls" -->
在IE中通过a标签直接上载rar文件时以乱码方式打开?MICROSOFT POWERPOINT document
在IE中通过a标签直接上载rar文件时以乱码方式打开?<% response.ContentType ="application/ms-powerpoint" %>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<!--#i nclude virtual="/myfile.pff" -->
在IE中通过a标签直接上载rar文件时以乱码方式打开?PDF document
在IE中通过a标签直接上载rar文件时以乱码方式打开?<% response.ContentType ="application/pdf" %>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<!--#i nclude virtual="/myfile.pdf" -->
在IE中通过a标签直接上载rar文件时以乱码方式打开?ZIP document
在IE中通过a标签直接上载rar文件时以乱码方式打开?<% response.ContentType ="application/zip" %>
在IE中通过a标签直接上载rar文件时以乱码方式打开?<!--#i nclude virtual="/myfile.zip" -->
在IE中通过a标签直接上载rar文件时以乱码方式打开

下面是更详细的ContentType

在IE中通过a标签直接上载rar文件时以乱码方式打开application/andrew-inset ez
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/mac-binhex40 hqx
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/mac-compactpro cpt
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/mathml+xml mathml
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/msword doc
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/octet-stream bin dms lha lzh exe?class?so dll
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/oda oda
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/ogg ogg
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/pdf pdf
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/postscript ai eps ps
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/rdf+xml rdf
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/smil smi smil
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/srgs gram
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/srgs+xml grxml
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/vnd.mif mif
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/vnd.mozilla.xul+xml xul
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/vnd.ms-excel xls
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/vnd.ms-powerpoint ppt
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/vnd.wap.wbxml wbxml
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/vnd.wap.wmlc .wmlc wmlc
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/vnd.wap.wmlscriptc .wmlsc wmlsc
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/voicexml+xml vxml
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-bcpio bcpio
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-cdlink vcd
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-chess-pgn pgn
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-cpio cpio
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-csh csh
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-director dcr dir dxr
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-dvi dvi
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-futuresplash spl
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-gtar gtar
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-hdf hdf
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-httpd-php .php .php4 .php3 .phtml
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-httpd-php-source .phps
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-javascript js
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-koan skp skd skt skm
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-latex latex
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-netcdf nc cdf
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-pkcs7-crl .crl
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-sh sh
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-shar shar
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-shockwave-flash swf
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-stuffit sit
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-sv4cpio sv4cpio
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-sv4crc sv4crc
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-tar .tgz tar
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-tcl tcl
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-tex tex
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-texinfo texinfo texi
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-troff t tr roff
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-troff-man man
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-troff-me me
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-troff-ms ms
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-ustar ustar
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-wais-source src
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/x-x509-ca-cert .crt
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/xhtml+xml xhtml xht
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/xml xml xsl
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/xml-dtd dtd
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/xslt+xml xslt
在IE中通过a标签直接上载rar文件时以乱码方式打开?application/zip zip
在IE中通过a标签直接上载rar文件时以乱码方式打开?audio/basic au snd
在IE中通过a标签直接上载rar文件时以乱码方式打开?audio/midi mid midi kar
在IE中通过a标签直接上载rar文件时以乱码方式打开?audio/mpeg mpga mp2 mp3
在IE中通过a标签直接上载rar文件时以乱码方式打开?audio/x-aiff aif aiff aifc
在IE中通过a标签直接上载rar文件时以乱码方式打开?audio/x-mpegurl m3u
在IE中通过a标签直接上载rar文件时以乱码方式打开?audio/x-pn-realaudio ram rm
在IE中通过a标签直接上载rar文件时以乱码方式打开?audio/x-pn-realaudio-plugin rpm
在IE中通过a标签直接上载rar文件时以乱码方式打开?audio/x-realaudio ra
在IE中通过a标签直接上载rar文件时以乱码方式打开?audio/x-wav wav
在IE中通过a标签直接上载rar文件时以乱码方式打开?chemical/x-pdb pdb
在IE中通过a标签直接上载rar文件时以乱码方式打开?chemical/x-xyz xyz
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/bmp bmp
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/cgm cgm
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/gif gif
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/ief ief
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/jpeg jpeg jpg jpe
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/png png
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/svg+xml svg
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/tiff tiff tif
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/vnd.djvu djvu djv
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/vnd.wap.wbmp .wbmp wbmp
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/x-cmu-raster ras
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/x-icon ico
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/x-portable-anymap pnm
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/x-portable-bitmap pbm
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/x-portable-graymap pgm
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/x-portable-pixmap ppm
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/x-rgb rgb
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/x-xbitmap xbm
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/x-xpixmap xpm
在IE中通过a标签直接上载rar文件时以乱码方式打开?image/x-xwindowdump xwd
在IE中通过a标签直接上载rar文件时以乱码方式打开?model/iges igs iges
在IE中通过a标签直接上载rar文件时以乱码方式打开?model/mesh msh mesh silo
在IE中通过a标签直接上载rar文件时以乱码方式打开?model/vrml wrl vrml
在IE中通过a标签直接上载rar文件时以乱码方式打开?text/calendar ics ifb
在IE中通过a标签直接上载rar文件时以乱码方式打开?text/css css
在IE中通过a标签直接上载rar文件时以乱码方式打开?text/html .shtml html htm
在IE中通过a标签直接上载rar文件时以乱码方式打开?text/plain asc txt
在IE中通过a标签直接上载rar文件时以乱码方式打开?text/richtext rtx
在IE中通过a标签直接上载rar文件时以乱码方式打开?text/rtf rtf
在IE中通过a标签直接上载rar文件时以乱码方式打开?text/sgml sgml sgm
在IE中通过a标签直接上载rar文件时以乱码方式打开?text/tab-separated-values tsv
在IE中通过a标签直接上载rar文件时以乱码方式打开?text/vnd.wap.wml .wml wml
在IE中通过a标签直接上载rar文件时以乱码方式打开?text/vnd.wap.wmlscript .wmls wmls
在IE中通过a标签直接上载rar文件时以乱码方式打开?text/x-setext etx
在IE中通过a标签直接上载rar文件时以乱码方式打开?video/mpeg mpeg mpg mpe
在IE中通过a标签直接上载rar文件时以乱码方式打开?video/quicktime qt mov
在IE中通过a标签直接上载rar文件时以乱码方式打开?video/vnd.mpegurl?mxu
在IE中通过a标签直接上载rar文件时以乱码方式打开?video/x-msvideo avi
在IE中通过a标签直接上载rar文件时以乱码方式打开?video/x-sgi-movie movie
在IE中通过a标签直接上载rar文件时以乱码方式打开?x-conference/x-cooltalk ice

热点排行