Java之JSP教程九大內(nèi)置對(duì)象詳解(下篇)
目錄

前言

之前我們在這篇文章java之jsp教程九大內(nèi)置對(duì)象詳解中,已經(jīng)講解完了六個(gè)個(gè)對(duì)象,接下來我們講解最后的三個(gè)對(duì)象

jsp pagecontext對(duì)象

pagecontext 是 javax.servlet.jsp.pagecontext 的實(shí)例對(duì)象。

pagecontext 對(duì)象表示整個(gè) jsp 頁面,可以獲取或刪除以下對(duì)象的任意屬性:

  • page
  • request
  • session
  • application

pagecontext 常用的方法如下:

  • object findattribute (string attributename):按 page、request、session、application 的順序查找指定的屬性,并返回對(duì)應(yīng)的屬性值。如果沒有相應(yīng)的屬性,則返回 null
  • object getattribute (string attributename, int scope):在指定范圍內(nèi)獲取屬性值。與 findattribute 不同的是,getattribute 需要指定查找范圍
  • void removeattribute(string attributename, int scope):在指定范圍內(nèi)刪除某屬性
  • void setattribute(string attributename, object attributevalue, int scope):在指定范圍內(nèi)設(shè)置屬性和屬性值
  • exception getexception():返回當(dāng)前頁的 exception 對(duì)象
  • servletrequest getrequest():返回當(dāng)前頁的 request 對(duì)象
  • servletresponse getresponse():返回當(dāng)前頁的 response 對(duì)象
  • servletconfig getservletconfig():返回當(dāng)前頁的 servletconfig 對(duì)象
  • httpsession getsession():返回當(dāng)前頁的 session 對(duì)象
  • object getpage():返回當(dāng)前頁的 page 對(duì)象
  • servletcontext getservletcontext():返回當(dāng)前頁的 application 對(duì)象

示例

使用 pagecontext 對(duì)象取得不同范圍的屬性值。index.jsp 代碼如下:

<%@ page language="java" contenttype="text/html; charset=utf-8"
    pageencoding="utf-8"%>
<!doctype html>
<html>
<head>
</head>
<body>
    <%
        request.setattribute("info", "request范圍的值");
        session.setattribute("info", "session范圍的值");
        application.setattribute("info", "application范圍的值");
    %>
    利用 pagecontext 取出以下范圍內(nèi)各值(方法一):
    <br> request 設(shè)定的值:<%=pagecontext.getrequest().getattribute("info")%>
    <br> session 設(shè)定的值:<%=pagecontext.getsession().getattribute("info")%>
    <br> application 設(shè)的值:<%=pagecontext.getservletcontext().getattribute("info")%>
    <hr>
    利用pagecontext取出以下范圍內(nèi)各值(方法二):
    <br> 范圍1(page)內(nèi)的值:<%=pagecontext.getattribute("info", 1)%>
    <br> 范圍2(request)內(nèi)的值:<%=pagecontext.getattribute("info", 2)%>
    <br> 范圍3(session)內(nèi)的值:<%=pagecontext.getattribute("info", 3)%>
    <br> 范圍4(application)內(nèi)的值:<%=pagecontext.getattribute("info", 4)%>
    <hr>
    利用 pagecontext 修改或刪除某個(gè)范圍內(nèi)的值:
    <%
        pagecontext.setattribute("info", "修改request范圍的值", 2);
    %>
    <br> 修改 request 設(shè)定的值:
    <br>
    <%=pagecontext.getrequest().getattribute("info")%>
    <br>
    <%
        pagecontext.removeattribute("info");
    %>
    刪除 session 設(shè)定的值:<%=session.getattribute("info")%>
</body>
</html>

運(yùn)行結(jié)果如下:

index.jsp運(yùn)行結(jié)果

jsp page對(duì)象

jsp page 的實(shí)質(zhì)是 java.lang.object 對(duì)象,相當(dāng)于 java 中的 this 關(guān)鍵字。

page 對(duì)象是指當(dāng)前的 jsp 頁面本身,在實(shí)際開發(fā)中并不常用。

page 對(duì)象的常用方法如下:

class getclass():返回當(dāng)前頁面所在類

int hashcode():返回當(dāng)前頁面的 hash 代碼

string tostring():將當(dāng)前頁面所在類轉(zhuǎn)換成字符串

boolean equals(object obj):比較對(duì)象和指定的對(duì)象是否相等

void copy (object obj):把對(duì)象復(fù)制到指定的對(duì)象中

object clone():復(fù)制對(duì)象

示例

下面通過一個(gè)簡單的例子來演示 page 中的方法。

index.jsp 代碼如下:

<%@ page language="java" contenttype="text/html; charset=utf-8"
    pageencoding="utf-8"%>
<!doctype html>
<html>
<head>
</head>
<body>
    <%
        object obj;
        obj = null;
    %>
    返回當(dāng)前頁面所在類:<%=page.getclass()%>
    <br> 返回當(dāng)前頁面的 hash 代碼:<%=page.hashcode()%>
    <br> 轉(zhuǎn)換成 string 類的對(duì)象:<%=page.tostring()%>
    <br> page和obj比較:<%=page.equals(obj)%>
    <br> page和this比較:<%=page.equals(this)%>
</body>
</html>

運(yùn)行結(jié)果如下:

jsp cookie的使用

cookie 不是 jsp 內(nèi)置對(duì)象,而是由 netscape 公司發(fā)明,用來跟蹤用戶會(huì)話(session)的方式。

cookie 由服務(wù)器生成并發(fā)送給瀏覽器(客戶端),瀏覽器會(huì)將其以文本文件的形式存儲(chǔ)在某個(gè)目錄下。

例如,ie 瀏覽器把 cookie 信息保存在類似于 c://windows//cookies 的目錄下,當(dāng)用戶再次訪問某個(gè)網(wǎng)站時(shí),服務(wù)器就會(huì)要求瀏覽器查找并返回之前發(fā)送的 cookie 信息,來識(shí)別此用戶。

識(shí)別用戶通常有以下步驟:

  • 服務(wù)器把 cookie 信息發(fā)送到瀏覽器,例如:用戶 id、用戶名稱等信息。
  • 瀏覽器在本地存儲(chǔ)這些信息。
  • 瀏覽器再次向服務(wù)器發(fā)送請(qǐng)求時(shí),它會(huì)同時(shí)將本地存儲(chǔ)的 cookie 信息一同發(fā)送給服務(wù)器,然后服務(wù)器使用這些信息來識(shí)別用戶或其它。
  • cookie 的作用表現(xiàn)在以下方面:

    • 對(duì)特定對(duì)象的追蹤,如用戶的訪問次數(shù)、最后訪問時(shí)間等。
    • 統(tǒng)計(jì)網(wǎng)頁的瀏覽次數(shù)。
    • 在 cookie 有效期內(nèi),記錄用戶的登錄信息,簡化下一次的登錄過程。
    • 實(shí)現(xiàn)各種個(gè)性化服務(wù),如”最近瀏覽過的商品“。

    注意:由于 cookie 會(huì)將用戶的個(gè)人信息保存在客戶端,如用戶名、計(jì)算機(jī)名、以及瀏覽和登錄的網(wǎng)站等。這些信息可能會(huì)包含一些比較敏感的內(nèi)容,所以從安全角度來說,使用 cookie 存在著一定的風(fēng)險(xiǎn),因此不建議在 cookie 中保存比較重要或隱私的內(nèi)容。

    cookie方法

    cookie 常用方法如下:

    • public void setdomain(string pattern):設(shè)置 cookie 的域名,如 biancheng.net
    • public string getdomain():獲取 cookie 的域名
    • public void setmaxage(int expiry):設(shè)置 cookie 有效期,單位:秒 默認(rèn)僅在當(dāng)前會(huì)話中存在
    • public int getmaxage():獲取 cookie 有效期,單位:秒 默認(rèn)為 -1,表示 cookie 保存到瀏覽器關(guān)閉為止
    • public string getname():返回 cookie 的名稱,名稱創(chuàng)建后將不能被修改
    • public void setvalue(string newvalue):設(shè)置 cookie 的值
    • public string getvalue():獲取 cookie 的值
    • public void setpath(string uri):設(shè)置 cookie 的路徑 默認(rèn)為當(dāng)前頁面目錄以及子目錄下的所有 url
    • public string getpath():獲取 cookie 的路徑
    • public void setsecure(boolean flag):設(shè)置 cookie 是否要加密傳輸
    • public void setcomment(string purpose):設(shè)置 cookie 注釋
    • public string getcomment():返回 cookie 注釋,如果 cookie 沒有注釋,則返回 nulljsp使用cookie

    jsp 使用 cookie 主要分為以下幾個(gè)步驟。

    創(chuàng)建 cookie 對(duì)象

    創(chuàng)建 cookie 對(duì)象,name 代表 cookie 的名稱,value 表示該名稱對(duì)應(yīng)的值,語法如下:

    cookie cookie = new cookie(string name,string value);

    注意:name 和 value 中不能包含空格和以下字符:

    [ ] ( ) = , " / ? @ : ;

    寫入 cookie

    創(chuàng)建 cookie 對(duì)象后,調(diào)用 response.addcookie() 方法寫入 cookie,代碼如下:

    response.addcookie(cookie);

    設(shè)置 cookie 有效期

    調(diào)用 setmaxage() 方法設(shè)置 cookie 的有效期(單位:秒),如將 cookie 有效期設(shè)置為 24 小時(shí),代碼如下:

    cookie.setmaxage(60*60*24); 

    讀取cookie

    調(diào)用 request.getcookies() 方法讀取 cookie,該方法返回 http 請(qǐng)求中的 cookie 對(duì)象數(shù)組,需要通過遍歷進(jìn)行訪問。

    示例

    通過 html 表單將客戶端數(shù)據(jù)提交到 index.jsp 中,并設(shè)置 cookie。

    login.jsp 代碼如下:

    <%@ page language="java" contenttype="text/html; charset=utf-8"
        pageencoding="utf-8"%>
    <html>
    <head>
    </head>
    <body>
        <form action="index.jsp" method="get">
            站點(diǎn)名: <input type="text" name="name"> <br />
            網(wǎng)址: <input type="text" name="url" />
            <input type="submit" value="提交" />
        </form>
    </body>
    </html>

    index.jsp 代碼如下:

    <%@ page language="java" contenttype="text/html; charset=utf-8"
        pageencoding="utf-8"%>
    <%@ page import="java.net.*"%>
    <%
        // 解決中文亂碼  
        string str = urlencoder.encode(request.getparameter("name"), "utf-8");
        // 創(chuàng)建cookie對(duì)象
        cookie name = new cookie("name", str);
        cookie url = new cookie("url", request.getparameter("url"));
        // 設(shè)置cookie有效期為24小時(shí)。
        name.setmaxage(60 * 60 * 24);
        url.setmaxage(60 * 60 * 24);
        // 在響應(yīng)頭部添加cookie
        response.addcookie(name);
        response.addcookie(url);
    %>
    <html>
    <head>
    <title>編程幫(www.biancheng.net)</title>
    </head>
    <body>
        <b>網(wǎng)站名:</b>
        <%=request.getparameter("name")%><br>
        <b>網(wǎng)址:</b>
        <%=request.getparameter("url")%>
    </body>
    </html>

    運(yùn)行結(jié)果如下:

    login.jsp頁面運(yùn)行結(jié)果

    index.jsp頁面運(yùn)行結(jié)果

    讀取cookie

    調(diào)用 request.getcookies() 方法,在 cookie.jsp 頁面中讀取 cookie

    cookie.jsp 代碼如下:

    <%@ page language="java" contenttype="text/html; charset=utf-8"
        pageencoding="utf-8"%>
    <%@ page import="java.net.*"%>
    <!doctype html>
    <html>
    <head>
    <title>編程幫(www.biancheng.net)</title>
    </head>
    <body>
        <%
            cookie cookie = null; //創(chuàng)建cookie對(duì)象
            cookie[] cookies = null;
            // 獲取 cookie 的數(shù)據(jù)
            cookies = request.getcookies();
            if (cookies != null) {
                out.println("<h2> 獲取cookie名稱與對(duì)應(yīng)值</h2>");
                for (int i = 0; i < cookies.length; i++) {
                    cookie = cookies[i];
                    out.print("參數(shù)名 : " + cookie.getname());
                    out.print("<br>");
                    out.print("參數(shù)值: " + urldecoder.decode(cookie.getvalue(), "utf-8") + " <br>");
                    out.print("------------------------------------<br>");
                }
            } else {
                out.println("<h2>cookie為空</h2>");
            }
        %>
    </body>
    </html>

    運(yùn)行結(jié)果如下:

    刪除cookie

    刪除 cookie 步驟如下:

    • 獲取 cookie
    • 將要?jiǎng)h除的 cookie 有效期設(shè)置為 0
    • 調(diào)用 response.addcookie() 方法重新寫入 cookie

    刪除參數(shù)名為“name”的 cookie

    cookie.jsp 代碼如下:

    <%@ page language="java" contenttype="text/html; charset=utf-8"
        pageencoding="utf-8"%>
    <%@ page import="java.net.*"%>
    <!doctype html>
    <html>
    <head>
    <title>編程幫(www.biancheng.net)</title>
    </head>
    <body>
        <%
            cookie cookie = null; //創(chuàng)建cookie對(duì)象
            cookie[] cookies = null;
            // 獲取 cookie 的數(shù)據(jù)
            cookies = request.getcookies();
            if (cookies != null) {
                out.println("<h2> 獲取cookie名稱與對(duì)應(yīng)值</h2>");
                for (int i = 0; i < cookies.length; i++) {
                    cookie = cookies[i];
                    //刪除參數(shù)名為name的cookie
                    if ((cookie.getname()).compareto("name") == 0) {
                        cookie.setmaxage(0);
                        response.addcookie(cookie);
                        out.print("刪除 cookie: " + cookie.getname() + "<br/>");
                    }
                    out.print("參數(shù)名 : " + cookie.getname());
                    out.print("<br>");
                    out.print("參數(shù)值: " + urldecoder.decode(cookie.getvalue(), "utf-8") + " <br>");
                    out.print("------------------------------------<br>");
                }
            } else {
                out.println("<h2>cookie為空</h2>");
            }
        %>
    </body>
    </html>

    刷新 cookie.jsp 頁面,運(yùn)行結(jié)果如下:

    注:也可以手動(dòng)在瀏覽器中刪除 cookie。

    session和cookie的區(qū)別

    session 和 cookie 的區(qū)別如下:

    session:

    • cookie將信息保存在服務(wù)器
    • 保存的值是 object 類型
    • session 存儲(chǔ)的數(shù)據(jù)隨會(huì)話的結(jié)束而結(jié)束
    • 安全性高,可以保存重要的信息

    cookie:

    • 將信息保存在客戶端
    • 保存的值是 string 類型
    • cookie 可以長期保存在客戶端
    • 安全性低,通常用于保存不重要的信息

    實(shí)際開發(fā)中,需要根據(jù)不同的業(yè)務(wù)需求來選擇采用哪種技術(shù),例如,用戶的用戶名和密碼等敏感信息不能使用 cookie 存儲(chǔ),淘寶購物的”最近瀏覽過的商品“,則可以使用 cookie 存儲(chǔ)在客戶端。

    到此這篇關(guān)于java之jsp教程九大內(nèi)置對(duì)象詳解的文章就介紹到這了,所有內(nèi)容也都講解完了,對(duì)其他內(nèi)容還感興趣的請(qǐng)搜索碩編程以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持碩編程!

    相關(guān)文章
    亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频