我正在使用HTTP连接器从独立的Tomcat 7.0.35服务器在单个war文件中提供一些静态HTML文件和一个servlet。
我想通过设置HTTP响应标头来指定所有静态HTML文件的字符集Content-Type=text/html;charset=UTF-8。
Content-Type=text/html;charset=UTF-8
Tomcat默认情况下使用Content-Type=text/html不带字符集的HTML文件。
Content-Type=text/html
我遵循以下指示:
http://wiki.apache.org/tomcat/FAQ/CharacterEncoding#Q8
但是标题仍然包含Content-Type=text/html没有;charset=UTF-8
;charset=UTF-8
我的web.xml复制如下。请注意,我试图改变url- pattern到/*,*,/index.html,和index.html,但这些都不奏效。
url- pattern
/*
*
/index.html
index.html
仅供参考,Tomcat已正确地为/index.html文件提供服务(缺少除外;charset=UTF-8)。/ getData servlet也可以正常工作,并且我已经Content- Type=text/html;charset=UTF-8通过使用成功设置了servlet的响应response.setContentType("application/json;charset=UTF-8");。
Content- Type=text/html;charset=UTF-8
response.setContentType("application/json;charset=UTF-8");
谢谢你的帮助。
<?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> <filter> <filter-name>CharacterEncoding</filter-name> <filter-class>org.apache.catalina.filters.SetCharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>CharacterEncoding</filter-name> <url-pattern>/index.html</url-pattern> </filter-mapping> <servlet> <servlet-name>DataServlet</servlet-name> <servlet-class>com.rcg.data.web.DataServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>DataServlet</servlet-name> <url-pattern>/getData</url-pattern> </servlet-mapping> <session-config> <session-timeout>30</session-timeout> </session-config> </web-app>
您是否尝试过将MIME映射设置为包括字符集?
<mime-mapping> <extension>html</extension> <mime-type>text/html;charset=UTF-8</mime-type> </mime-mapping>