JSP第四篇【EL表達式介紹、獲取各種數據、11個內置對象、執行運算、回顯數據、自定義函數、fn方法庫】

什麼是EL表達式?

表達式語言(Expression Language,EL),EL表達式是用」${}」括起來的腳本,用來更方便的讀取對象!php

  • EL表達式主要用來讀取數據,進行內容的顯示!

爲何要使用EL表達式?

  • 爲何要使用EL表達式,咱們先來看一下沒有EL表達式是怎麼樣讀取對象數據的吧css

  • 在1.jsp中設置了Session屬性html

<%@ page language="java" contentType="text/html" pageEncoding="UTF-8"%>
    <html>
    <head>
        <title>向session設置一個屬性</title>
    </head>
    <body>

    <% //向session設置一個屬性 session.setAttribute("name", "aaa"); System.out.println("向session設置了一個屬性"); %>

    </body>
    </html>
  • 在2.jsp中獲取Session設置的屬性
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <html>
    <head>
        <title></title>
    </head>
    <body>

    <% String value = (String) session.getAttribute("name"); out.write(value); %>
    </body>
    </html>
  • 效果:

  • 上面看起來,也沒有多複雜呀,那咱們試試EL表達式的!java

  • 在2.jsp中讀取Session設置的屬性web

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
    <html>
    <head>
        <title></title>
    </head>
    <body>

    ${name}

    </body>
    </html>
  • 只用了簡簡單單的幾個字母就能輸出Session設置的屬性了!而且輸出在瀏覽器上!

  • 使用EL表達式能夠方便地讀取對象中的屬性、提交的參數、JavaBean、甚至集合

EL表達式的做用

  • 首先來看一下EL表達式的語法吧
${標識符}
  • EL表達式若是找不到相應的對象屬性,返回的的空白字符串「」,而不是null,這是EL表達式最大的特色!

獲取各種數據

獲取域對象的數據

  • 上面在例子中,咱們已經體驗到了獲取Session域對象的數據是多麼地方便!其實EL表達式可讓咱們獲取各個域範圍的數據
  • 在1.jsp中設置ServeltContext屬性(也就是application)
<%
        //向ServletContext設置一個屬性
        application.setAttribute("name", "aaa");
        System.out.println("向application設置了一個屬性");
    %>
  • 在2.jsp中獲取application的屬性
<% ${name} %> 
  • 和Session同樣,也能獲取獲得!

  • 以前咱們來說ServletContext對象的時候講過一個方法findAttribute(String name),EL表達式語句在執行的時候會調用該方法,用標識符做爲關鍵字分別從page、request、session、application四個域中查找相應的對象。這也解釋了爲何EL表達式能夠僅僅經過標識符就可以獲取到存進域對象的數據!
  • findAttribute()的查找順序:從小到大,也就是page->request->session->application

獲取JavaBean的屬性

  • 之前在JSP頁面獲取JavaBean的數據是這樣子的數組

    • 1.jsp頁面Session存進一個Person對象,設置age的屬性爲22
    <jsp:useBean id="person" class="domain.Person" scope="session"/>
        <jsp:setProperty name="person" property="age" value="22"/>
    • 在2.jsp中取出Session的屬性
    <%
    
            Person person = (Person) session.getAttribute("person");
    
            System.out.println(person.getAge());
        %>
    • 效果以下

  • 如今我使用了EL表達式讀取數據又會很是方便了瀏覽器

    //等同於person.getAge()
        ${person.age}

    • 上面的代碼等同於調用對象的getter方法,內部是經過反射機制完成的

獲取集合的數據

  • 集合操做在開發中被普遍地採用,在EL表達式中也很好地支持了集合的操做!能夠很是方便地讀取Collection和Map集合的內容ruby

  • 爲了更好地看出EL表達式的強大之處,咱們也來對比一下使用EL表達式和不使用EL表達式的區別bash

  • 下面不使用EL表達式輸出集合的元素markdown

    • 在1.jsp頁面中設置session的屬性,session屬性的值是List集合,List集合裝載的又是Person對象
    <%
            List<Person> list = new ArrayList();
    
            Person person1 = new Person();
            person1.setUsername("zhongfucheng");
    
            Person person2 = new Person();
            person2.setUsername("ouzicheng");
    
            list.add(person1);
            list.add(person2);
    
            session.setAttribute("list",list);
        %>
    • 在2.jsp中獲取到session的屬性,並輸出到頁面上
    <%
    
            List<Person> list = (List) session.getAttribute("list");
    
            out.write(list.get(0).getUsername()+"<br>");
    
            out.write(list.get(1).getUsername());
    
        %>
  • 使用EL表達式又是怎麼樣的效果呢?咱們來看看

    <%--取出list集合的第1個元素(下標從0開始),獲取username屬性--%>
        ${list[0].username}
        <br>
        <%--取出list集合的第2個元素,獲取username屬性--%>
        ${list[1].username}
  • 一樣也能夠有相同的效果:

  • 咱們再來使用一下Map集合

  • 在1.jsp中session屬性存儲了Map集合,Map集合的關鍵字是字符串,值是Person對象

<%

        Map<String, Person> map = new HashMap<>();

        Person person1 = new Person();
        person1.setUsername("zhongfucheng1");

        Person person2 = new Person();
        person2.setUsername("ouzicheng1");

        map.put("aa",person1);
        map.put("bb",person2);

        session.setAttribute("map",map);
    %>
  • 看起來好像取出數據的時候是會有點複雜,可是有了EL表達式也是很是輕鬆的
${map.aa.username}
    <br>
    ${map.bb.username}
  • 效果:

  • 若是Map集合存儲的關鍵字是一個數字,就不能使用」.」號運算符了,以下所示

  • 對於這種狀況,咱們能夠使用」[]」的形式讀取Map集合的數據
${map["1"].username}
    <br>
    ${map["2"].username}
  • EL表達式配合JSTL標籤能夠很方便的迭代集合,後面講到JSTL標籤的時候會用到!這裏就不詳細說明了。

EL運算符

  • EL表達式支持簡單的運算符:加減乘除取摸,邏輯運算符empty運算符(判斷是否爲null),三目運算符

  • empty運算符能夠判斷對象是否爲null,用做於流程控制!
  • 三目運算符簡化了if和else語句,簡化代碼書寫
<%
        List<Person> list = null;
    %>

    ${list==null?"list集合爲空":"list集合不爲空"}
  • 效果:


EL表達式11個內置對象

EL表達式主要是來對內容的顯示,爲了顯示的方便,EL表達式提供了11個內置對象

  1. pageContext 對應於JSP頁面中的pageContext對象(注意:取的是pageContext對象)
  2. pageScope 表明page域中用於保存屬性的Map對象
  3. requestScope 表明request域中用於保存屬性的Map對象
  4. sessionScope 表明session域中用於保存屬性的Map對象
  5. applicationScope 表明application域中用於保存屬性的Map對象
  6. param 表示一個保存了全部請求參數的Map對象
  7. paramValues表示一個保存了全部請求參數的Map對象,它對於某個請求參數,返回的是一個string[]
  8. header 表示一個保存了全部http請求頭字段的Map對象
  9. headerValues同上,返回string[]數組。
  10. cookie 表示一個保存了全部cookie的Map對象
  11. initParam 表示一個保存了全部web應用初始化參數的map對象

    • 下面測試各個內置對象
<%--pageContext內置對象--%>
    <%
        pageContext.setAttribute("pageContext1", "pageContext");
    %>
    pageContext內置對象:${pageContext.getAttribute("pageContext1")}
    <br>

    <%--pageScope內置對象--%>
    <%
        pageContext.setAttribute("pageScope1","pageScope");
    %>
    pageScope內置對象:${pageScope.pageScope1}
    <br>

    <%--requestScope內置對象--%>
    <%
        request.setAttribute("request1","reqeust");
    %>
    requestScope內置對象:${requestScope.request1}
    <br>

    <%--sessionScope內置對象--%>
    <%
        session.setAttribute("session1", "session");
    %>
    sessionScope內置對象:${sessionScope.session1}
    <br>

    <%--applicationScope內置對象--%>
    <%
        application.setAttribute("application1","application");
    %>
    applicationScopt內置對象:${applicationScope.application1}
    <br>

    <%--header內置對象--%>
    header內置對象:${header.Host}
    <br>

    <%--headerValues內置對象,取出第一個Cookie--%>
    headerValues內置對象:${headerValues.Cookie[0]}
    <br>


    <%--Cookie內置對象--%>
    <%
        Cookie cookie = new Cookie("Cookie1", "cookie");
    %>
    Cookie內置對象:${cookie.JSESSIONID.value}
    <br>

    <%--initParam內置對象,須要爲該Context配置參數才能看出效果【jsp配置的無效!親測】--%>

    initParam內置對象:${initParam.name}

    <br>
  • 效果圖:

注意事項:

  • 測試headerValues時,若是頭裏面有「-」 ,例Accept-Encoding,則要headerValues[「Accept-Encoding」]
  • 測試cookie時,例${cookie.key}取的是cookie對象,如訪問cookie的名稱和值,須${cookie.key.name}${cookie.key.value}
  • 測試initParam時,初始化參數要的web.xml中的配置Context的,僅僅是jsp的參數是獲取不到的

  • 上面已經測過了9個內置對象了,至於param和parmaValues內置對象通常都是別的頁面帶數據過來的(表單、地址欄)

  • 表單頁面

<form action="/zhongfucheng/1.jsp" method="post">
    用戶名:<input type="text" name="username"><br>
    年齡:<input type="text " name="age"><br>
    愛好:
    <input type="checkbox" name="hobbies" value="football">足球
    <input type="checkbox" name="hobbies" value="basketball">籃球
    <input type="checkbox" name="hobbies" value="table tennis">兵乓球<br>
    <input type="submit" value="提交"><br>
</form>
  • 處理表單頁面:
 ${param.username} <br> ${param.age} <br> //沒有學習jstl以前就一個一個寫吧。 ${paramValues.hobbies[0]} <br> ${paramValues.hobbies[1]} <br> ${paramValues.hobbies[2]} <br> 
  • 效果:

  • 固然了,使用地址欄方式提交數據給處理頁面也是用param內置對象去獲取數據的


EL表達式回顯數據

EL表達式最大的特色就是:若是獲取到的數據爲null,輸出空白字符串」「!這個特色可讓咱們數據回顯

  • 在1.jsp中模擬場景
<%--模擬數據回顯場景--%>
    <%
        User user = new User();
        user.setGender("male");

        //數據回顯
        request.setAttribute("user",user);
    %>


    <input type="radio" name="gender" value="male" ${user.gender=='male'?'checked':'' }>男 <input type="radio" name="gender" value="female" ${user.gender=='female'?'checked':'' }>女 
  • 效果:


EL自定義函數

EL自定義函數用於擴展EL表達式的功能,可讓EL表達式完成普通Java程序代碼所能完成的功能

  • 開發HTML轉義的EL函數
  • 咱們有時候想在JSP頁面中輸出JSP代碼,可是JSP引擎會自動把HTML代碼解析,輸出給瀏覽器。此時咱們就要對HTML代碼轉義

步驟:

  • 編寫一個包含靜態方法的類EL表達式只能調用靜態方法),該方法很經常使用,Tomcat都有此方法,可在\webapps\examples\WEB-INF\classes\util中找到
public static String filter(String message) {

        if (message == null)
            return (null);

        char content[] = new char[message.length()];
        message.getChars(0, message.length(), content, 0);
        StringBuilder result = new StringBuilder(content.length + 50);
        for (int i = 0; i < content.length; i++) {
            switch (content[i]) {
            case '<':
                result.append("&lt;");
                break;
            case '>':
                result.append("&gt;");
                break;
            case '&':
                result.append("&amp;");
                break;
            case '"':
                result.append("&quot;");
                break;
            default:
                result.append(content[i]);
            }
        }
        return (result.toString());

    }
  • 在WEB/INF下建立tld(taglib description)文件,在tld文件中描述自定義函數
<?xml version="1.0" encoding="ISO-8859-1"?>

    <taglib xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd" version="2.1">

        <tlib-version>1.0</tlib-version>
        <short-name>myshortname</short-name>
        <uri>/zhongfucheng</uri>

        <!--函數的描述-->
        <function>

            <!--函數的名字-->
            <name>filter</name>

            <!--函數位置-->
            <function-class>utils.HTMLFilter</function-class>

            <!--函數的方法聲明-->
            <function-signature>java.lang.String filter(java.lang.String)</function-signature>
        </function>

    </taglib>
  • 在JSP頁面中導入和使用自定義函數,EL自定義的函數通常前綴爲」fn」,uri是」/WEB-INF/tld文件名稱」
<%@ page language="java" contentType="text/html" pageEncoding="UTF-8" %>
    <%@taglib prefix="fn" uri="/WEB-INF/zhongfucheng.tld" %>


    <html>
    <head>
        <title></title>
    </head>
    <body>

    //完成了HTML轉義的功能
    ${fn:filter("<a href='#'>點我</a>")}


    </body>
    </html>
  • 效果:


EL函數庫(fn方法庫)

  • 因爲在JSP頁面中顯示數據時,常常須要對顯示的字符串進行處理,SUN公司針對於一些常見處理定義了一套EL函數庫供開發者使用
  • 其實EL函數庫就是fn方法庫,是JSTL標籤庫中的一個庫,也有人稱之爲fn標籤庫,可是該庫長得不像是標籤,因此稱之爲fn方法庫
  • 既然做爲JSTL標籤庫中的一個庫,要使用fn方法庫就須要導入JSTL標籤要想使用JSTL標籤庫就要導入jstl.jar和standard.jar包!

  • 因此,要對fn方法庫作測試,首先導入開發包(jstl.jar、standard.jar)

  • 在JSP頁面中指明使用標籤庫
<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  • fn方法庫全都是跟字符串有關的(能夠把它想成是String的方法)

    • fn:toLowerCase
    • fn:toUpperCase
    • fn:trim
    • fn:length
    • fn:split
    • fn:join 【接收字符數組,拼接字符串】
    • fn:indexOf
    • fn:contains
    • fn:startsWith
    • fn:replace
    • fn:substring
    • fn:substringAfter
    • fn:endsWith
    • fn:escapeXml【忽略XML標記字符】
    • fn:substringBefore
  • 測試代碼:

contains:${fn:contains("zhongfucheng",zhong )}<br>

    containsIgnoreCase:${fn:containsIgnoreCase("zhongfucheng",ZHONG )}<br>

    endsWith:${fn:endsWith("zhongfucheng","eng" )}<br>

    escapeXml:${fn:escapeXml("<zhongfucheng>你是誰呀</zhongfucheng>")}<br>

    indexOf:${fn:indexOf("zhongfucheng","g" )}<br>

    length:${fn:length("zhongfucheng")}<br>

    replace:${fn:replace("zhongfucheng","zhong" ,"ou" )}<br>

    split:${fn:split("zhong,fu,cheng","," )}<br>

    startsWith:${fn:startsWith("zhongfucheng","zho" )}<br>

    substring:${fn:substring("zhongfucheng","2" , fn:length("zhongfucheng"))}<br>

    substringAfter:${fn:substringAfter("zhongfucheng","zhong" )}<br>

    substringBefore:${fn:substringBefore("zhongfucheng","fu" )}<br>

    toLowerCase:${fn:toLowerCase("zhonGFUcheng")}<br>

    toUpperCase:${fn:toUpperCase("zhongFUcheng")}<br>

    trim:${fn:trim(" zhong fucheng ")}<br>

    <%--將分割成的字符數組用"."拼接成一個字符串--%>
    join:${fn:join(fn:split("zhong,fu,cheng","," ),"." )}<br>
  • 效果:

  • 使用fn方法庫數據回顯
<%
        User user = new User();
        String likes[] = {"sing"};
        user.setLikes(likes);

        //數據回顯
        request.setAttribute("user",user);
    %>


    <%--java的字符數組以","號分割開,首先拼接成一個字符串,再判讀該字符串有沒有包含關鍵字,若是有就checked--%>
    <input type="checkbox"${ fn:contains(fn:join(user.likes,","),"sing")?'checked':'' }>唱歌
    <input type="checkbox"${ fn:contains(fn:join(user.likes,","),"dance")?'checked':'' }>跳舞
  • 效果:

相關文章
相關標籤/搜索