Solve Chinese garbled characters in JSP and struts2 actions

Source: Internet
Author: User

There are many solutions to garbled code in JSP and struts2. Today I tried a new method, which is nice and super simple.

 


First, write a filter


[Java]
Public class SetCodeFilter implements Filter {
 
@ Override
Public void destroy (){}
 
@ Override
Public void doFilter (ServletRequest req, ServletResponse res,
FilterChain chain) throws IOException, ServletException {

Req. setCharacterEncoding ("UTF-8 ");
Chain. doFilter (req, res );
}
 
@ Override
Public void init (FilterConfig arg0) throws ServletException {}
 
}

Public class SetCodeFilter implements Filter {

@ Override
Public void destroy (){}

@ Override
Public void doFilter (ServletRequest req, ServletResponse res,
FilterChain chain) throws IOException, ServletException {

Req. setCharacterEncoding ("UTF-8 ");
Chain. doFilter (req, res );
}

@ Override
Public void init (FilterConfig arg0) throws ServletException {}

}
Configure filter in web. xml


[Html]
<Filter>
<Filter-name> SetCodeFilter </filter-name>
<Filter-class> com. shop. web. filter. SetCodeFilter </filter-class>
</Filter>
<Filter-mapping>
<Filter-name> SetCodeFilter </filter-name>
<Url-pattern> *. do </url-pattern>
<Url-pattern> *. jsp </url-pattern>
</Filter-mapping>

<Filter>
<Filter-name> SetCodeFilter </filter-name>
<Filter-class> com. shop. web. filter. SetCodeFilter </filter-class>
</Filter>
<Filter-mapping>
<Filter-name> SetCodeFilter </filter-name>
<Url-pattern> *. do </url-pattern>
<Url-pattern> *. jsp </url-pattern>
</Filter-mapping>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.