Solve the Chinese problem of tapestry5

Source: Internet
Author: User

Note that you need to introduce the serlet-api.jar in the project, otherwise the compilation will not pass.
After testing, the Chinese HTML template can be used, and the Chinese input in the form can be displayed normally.

Just add this to your appmodule:

Java code
 
// Display the CJK (Chinese) Page
Public static pageresponserenderer decoratepageresponserenderer (
@ Injectservice ("pagemarkuprenderer ")
Final pagemarkuprenderer markuprenderer,
@ Injectservice ("markupwriterfactory ")
Final markupwriterfactory, final object delegate ){

Return new pageresponserenderer (){
Public void renderpageresponse (page, response)
Throws ioexception {
Markupwriter writer = markupwriterfactory. newmarkupwriter ();
Markuprenderer. renderpagemarkup (page, writer );
Printwriter PW = Response
. Getprintwriter ("text/html; charset = GBK ");
Writer. tomarkup (PW );
PW. Flush ();
}
};
}

// CJK (Chinese) supported in form input
Public void contributerequesthandler (
Orderedconfiguration configuration,
@ Injectservice ("encodingfilter ")
Requestfilter encodingfilter ){
Configuration. Add ("encodingfilter", encodingfilter );
}

Public requestfilter buildencodingfilter (@ injectservice ("requestglobals ")
Final requestglobals ){
Return new requestfilter (){
Public Boolean Service (request, response,
Requesthandler handler) throws ioexception {

Requestglobals. gethttpservletrequest (). setcharacterencoding (
"GBK ");
Return handler. Service (request, response );
}
};
}

 

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.