解决Servlet中GET请求参数为中文时出现乱码-创新互联
服务器:Tomcat 7.0.xx
在Servlet的doGet方法中添加以下代码:
String str = request.getParameter("username");
byte[] bytes = str.getBytes("iso-8859-1");
str = new String(bytes, "utf-8");
例子:
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String str = request.getParameter("username");
byte[] bytes = str.getBytes("iso-8859-1");
str = new String(bytes, "utf-8");
System.out.println(str);
}
当服务器:Tomcat 8.0.xx时,不需要输入 以上代码,可以直接输出
例子:
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String str = request.getParameter("username");
System.out.println(str);
}
创新互联www.cdcxhl.cn,专业提供香港、美国云服务器,动态BGP最优骨干路由自动选择,持续稳定高效的网络助力业务部署。公司持有工信部办法的idc、isp许可证, 机房独有T级流量清洗系统配攻击溯源,准确进行流量调度,确保服务器高可用性。佳节活动现已开启,新人活动云服务器买多久送多久。
名称栏目:解决Servlet中GET请求参数为中文时出现乱码-创新互联
当前路径:http://scyanting.com/article/dopcpo.html