关于通过url传参的编码转化_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 关于通过url传参的编码转化

关于通过url传参的编码转化

 2011/11/11 16:37:42  hezhiyu  http://hezhiyu.iteye.com  我要评论(0)
  • 摘要:1.action中先把参数转化成UTF-8的编码格式:publicclassHelloWorldAction{privateStringmsg;privateStringuserName;publicStringgetUserName(){returnuserName;}publicStringgetMessage1(){returnmsg;}publicStringexecute()throwsException{ActionSupportxxx;userName=URLEncoder
  • 标签:URL
1.action中先把参数转化成UTF-8的编码格式:
public class HelloWorldAction {
	private String msg;
	private String userName;
	
	public String getUserName() {
		return userName;
	}

	public String getMessage1() {
		return msg;
	}

	public String execute() throws Exception{
		ActionSupport xxx;
		userName = URLEncoder.encode("参数", "UTF-8");
		msg = "我的第一个struts2应用";
		return "success";
	}
}

2.struts.xml中配置url传参:
<action name="redirectTestAndparam" class="cn.itcast.action.HelloWorldAction" >
			<result type="redirect">/employeeAdd1.jsp?userName=${userName}</result>
        </action>

3.jsp页面中得到参数(ISO8859-1),并转成UTF-8的字符串
<%= new String(request.getParameter("userName").getBytes("ISO8859-1"),"UTF-8") %>

发表评论
用户名: 匿名