JSP中param动作的实例详解

JSP教程 2025-08-24

JSP中param动作的实例详解

一 语法

jsp:param name="参数名" value="参数值"

常常与jsp:forward一起使用,作为其子标签存在。

二 代码

1、login.jsp

%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8" %
%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%
 
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
html
 head
  base href="%=basePath%" rel="external nofollow" rel="external nofollow" rel="external nofollow" 
  
  titleMy JSP 'login.jsp' starting page/title
  
    meta http-equiv="pragma" content="no-cache"
    meta http-equiv="cache-control" content="no-cache"
    meta http-equiv="expires" content="0"  
    meta http-equiv="keywords" content="keyword1,keyword2,keyword3"
    meta http-equiv="description" content="This is my page"
    !--
    link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" 
    --
 
 /head
 
 body
  h1系统登录/h1
  hr
  form name="loginForm" action="dologin.jsp" method="post"
   table
    tr
     td用户名:/td
     tdinput type="text" name="username"//td
    /tr
    tr
     td密码:/td
     tdinput type="password" name="password"//td
    /tr
    tr
     td colspan="2"input type="submit" value="登录"//td
    /tr
   /table
  /form
 /body
/html

2、dologin.jsp

%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8"%
%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%
 
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
html
 head
  base href="%=basePath%" rel="external nofollow" rel="external nofollow" rel="external nofollow" 
  
  titleMy JSP 'dologin.jsp' starting page/title
  
    meta http-equiv="pragma" content="no-cache"
    meta http-equiv="cache-control" content="no-cache"
    meta http-equiv="expires" content="0"  
    meta http-equiv="keywords" content="keyword1,keyword2,keyword3"
    meta http-equiv="description" content="This is my page"
    !--
    link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" 
    --
 
 /head
 
 body
  jsp:forward page="user.jsp"
   jsp:param value="admin@123.net" name="email"/
   jsp:param value="888888" name="password"/
  /jsp:forward
 /body
/html

3、user.jsp

%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8"%
%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%
 
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
html
 head
  base href="%=basePath%" rel="external nofollow" rel="external nofollow" rel="external nofollow" 
  
  titleMy JSP 'user.jsp' starting page/title
  
    meta http-equiv="pragma" content="no-cache"
    meta http-equiv="cache-control" content="no-cache"
    meta http-equiv="expires" content="0"  
    meta http-equiv="keywords" content="keyword1,keyword2,keyword3"
    meta http-equiv="description" content="This is my page"
    !--
    link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" 
    --
 
 /head
 
 body
  h1用户资料/h1
  hr
  %
    request.setCharacterEncoding("utf-8");
    String username = "";
    String password = "";
    String email = "";
    if(request.getParameter("username")!=null)
    {
     username = request.getParameter("username");
    }
    if(request.getParameter("password")!=null)
    {
     password = request.getParameter("password");
    }
    if(request.getParameter("email")!=null)
    {
     email = request.getParameter("email");
    }
   
  %
    用户名:%=username %br
    密码:%=password %br
    电子邮箱:%=email %br
 /body
/html
 

三 运行结果

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

您可能感兴趣的文章:
  • JSP中的编译指令和动作指令的两点区别
  • jsp的常用指令有哪些(编译指令/动作指令整理)
  • 十三、JSP动作
  • 在JSP页面中动态生成图片验证码的方法实例
  • SpringBoot+jsp项目启动出现404的解决方法
  • spring boot整合jsp及设置启动页面的方法
  • JSP页面的静态包含和动态包含使用方法
  • jsp-解决文件上传后重启Tomcat时文件自动删除问题
  • JSP常用七大动作指令实例解析