欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

action 动态跳转地址

程序员文章站 2022-03-15 15:01:25
...
action中实现动态跳转得一个方法

public class RegmobileAction extends Action {
 public ActionForward execute(
  ActionMapping mapping,
  ActionForm form,
  HttpServletRequest request,
  HttpServletResponse response)
  throws Exception 
 {
  String url;
   url = "http://200.94.206.237:8070/order?" 
     +"&CPKeys:=626A737977&Itemid=124444" 
     +"&FeeNumber="+request.getParameter("phone")
     +"&Feetype=2&CTtag="+request.getParameter("CTtag")
     +"&backUrl=http://mms.0000.com.cn/mov/index.jsp"
     +"&deliverurl=http://mms.0000.com.cn/mov/deliver.do";
    ActionForward gotourl = new ActionForward(url);//url可以根据不同得条件指定不同得地址和不同得参数
  gotourl.setPath(url);
gotourl.setRedirect(true);
  return gotourl;
 } 

 

相关标签: JSP