java - How to include page encoding to all the jsp page -


i have included <%@ page contenttype="text/html; charset=utf-8" pageencoding="utf-8"%> in 1 jsp page , displayed french characters properly. want include page encoding jsp pages. in web.xml included

<jsp-config>       <jsp-property-group>       <url-pattern>*.jsp</url-pattern>         <page-encoding>utf-8</page-encoding>       </jsp-property-group>  </jsp-config> 

but work tomcat7 using tomcat6.

is there other solution this?

you can use meta tag instead of adding page encoding in jsp file or in web.xml . if have common .jsp file include


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -