Flex urlrequest Chinese parameter to background garbled problem solving method

Source: Internet
Author: User
Tags tomcat

Ext.: http://liyanjie918.blog.163.com/blog/static/2022729020128261252258/

Use urlrequest often need to pass parameters, if the parameters include Chinese to the background often garbled, solution one: The parameters are encoded, decoding in the background can be, instance code: Flex side:
var urlrequest:urlrequest; var url:string = "******"; var url:string = encodeURI (FullPath);   URLRequest = new URLRequest (url+ "downexcel?fullpath=" + FullPath); Java side: protected void DoPost (HttpServletRequest req, HttpServletResponse resp) throws Servletexception, IOException {.   .....   String fullpathname = new String (Req.getparameter ("FullPath"). GetBytes ("Iso-8859-1"), "UTF-8"); ......
This method has limitations if the encoding format in Tomcat is set to cause this garbled. Workaround two: To encode the foreground parameters, specify the Tomcat encoding format, instance code: VAR urlrequest:urlrequest; var url:string = "******"; var url:string = encodeURI (FullPath); URLRequest = new URLRequest (url+ "downexcel?fullpath=" + FullPath);
Modify Tomcat's server.xml <connector port= "8080" protocol= "http/1.1" connectiontimeout= "20000" Redirectport= "8443" uriencoding= "Utf-8"/>
Reboot Tomcat after Setup

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.