jsp页面之间URL传值,中文乱码,测试demo

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
    <%
		String param = request.getParameter("param"); 
    	if(param != null){
    		param =new String( request.getParameter("param").getBytes("ISO8859-1"),"UTF-8"); 
    	}
    %>


Insert title here


	测试url传参中文乱码 
这个参数是<%= param %>
解决办法: 1.tomcat中config中的server.xml中,port="8080"添加URLEncoding="gb2312",重启服务(此方法试了无效)
2.接受参数时:改为String param =new String( request.getParameter("param").getBytes("ISO8859-1"),"UTF-8");


你可能感兴趣的:(jsp,jsp,URL,乱码)