tomcat中文问题

改tomcat的server.XML文件(这里是解决含有中文的文件、图片的不能下载、显示的问题): <Connector port="8080" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="100" debug="0" connectionTimeout="20000" disableUploadTimeout="true"  URIEncoding="UTF-8"/> URIEncoding="UTF-8"    加上这句就可以识别中文文件了,也就是不光可以在JSP中显示中文,还可以下载显示! 另外对URI中含有中文,可以在URIEncoding="UTF-8"之后加上useBodyEncodingForURI="true" ! 

欢迎转载,但请保留出处,本文章转自[华软网] 原文链接:http://www.huarw.com/program/java/JAVA02/200810/1627042_3.html

你可能感兴趣的:(html,tomcat,xml,jsp)