码迷,mamicode.com
首页 > Web开发 > 详细

url中,中文乱码的问题

时间:2016-12-21 16:09:21      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:标签   pos   method   als   net   string   for   blog   java.net   

1// 在jsp中
2 String add  = java.net.URLEncoder.encode("添加", "utf-8");
3 add = java.net.URLEncoder.encode(add, "utf-8");
4//在from标签中5 <form action="Servlet/FinancialServlet?topic=<%=add %>" method="POST" >

在接收方

1 String topic = request.getParameter("topic");
2 topic = java.net.URLDecoder.decode(topic, "utf-8");

这样接收到的就不是乱码啦

 

url中,中文乱码的问题

标签:标签   pos   method   als   net   string   for   blog   java.net   

原文地址:http://www.cnblogs.com/LYT731013/p/6207938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!