首页 > Java > java教程 > Java怎么给jsp页面赋值

Java怎么给jsp页面赋值

(*-*)浩
发布: 2019-05-29 11:47:12
原创
4779 人浏览过

使用转发来给jsp页面赋值。具体操作如下:

Java怎么给jsp页面赋值

这个在servlet中可是使用转发实现参数传递

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    request.setCharacterEncoding("UTF-8");
    request.setAttribute("username", "dhweicheng");
    request.setAttribute("password", "123456");
    request.getRequestDispatcher("/my.jsp").forward(request, response);
}
登录后复制

jsp页面代码:

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>页面代码</title>
    </head>
    <body>
        <h5>通过request对象取值</h5>
        账号:<%=request.getAttribute("username") %>
        密码:<%=request.getAttribute("password") %>
        <P>=======================</P>
        <h5>通过EL表达式取值</h5>
        账号:${username}
        密码:${password}
    </body>
</html>
登录后复制

以上是Java怎么给jsp页面赋值的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板