首頁 > Java > java教程 > 主體

Java怎麼給jsp頁面賦值

(*-*)浩
發布: 2019-05-29 11:47:12
原創
4736 人瀏覽過

使用轉送來給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
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板