EL表达式和JSTL表达式实例
/*
**title:el表达式和jstl表达式实例
**author:insun
**blog:
*/
为了方便写jsp,我们引入了el和jstl表达式
el表示类似:<%=request.getattribute("info")%>
jstl类似:
<table border=1>
<tr><td>id</td><td>用户名</td><td>密码</td></tr>
<c:foreach items="${requestscope.list}" var="list" >
<tr>
<td><c:out value="${list.id}"/></td>
<td><c:out value="${list.name}"/></td>
<td><c:out value="${list.password}"/></td>
</tr>
</c:foreach>
</table>
jstl要引入库文件的,el不用。
jstl下载(c标签) :http://archive.apache.org/dist/jakarta/taglibs/standard/binaries/
这个目录自己找个下载下copy到工程lib目录。
要记得引用:<%@ taglib prefix="c" uri="http://java.sun.com//jstl/core" %>
java servlet实现注册和登录 http://yxmhero1989.blog.163.com/blog/static/11215795620111016103040944/
在这篇中把welcome.jsp写个jstl示例:
<%@ page language="java" contenttype="text/html; charset=utf-8"
pageencoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!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=iso-8859-1">
<title>info</title>
</head>
<body>
<p><%=request.getattribute("info")%></p> <br />
${info}! <br />
欢迎您,${requestscope.user.name}, 你输入的密码是:${requestscope.user.password}<br />
${sessionscope.info} <br />
<table border=1>
<tr><td>id</td><td>用户名</td><td>密码</td></tr>
<c:foreach items="${requestscope.list}" var="list" >
<tr>
<td><c:out value="${list.id}"/></td>
<td><c:out value="${list.name}"/></td>
<td><c:out value="${list.password}"/></td>
</tr>
</c:foreach>
</table>
</body>
</html>
=========================================================================================================
jsp中的el表达式详细介绍
http://www.diybl.com/course/4_webprogram/jsp/jsp_js/2008229/102031.html
一、jsp el语言定义
e l(expression language) 目的:为了使jsp写起来更加简单。
表达式语言的灵感来自于 ecmascript 和 xpath 表达式语言,它提供了在 jsp 中简化表达式的方法。它是一种简单的语言,基于可用的命名空间(pagecontext 属性)、嵌套属性和对集合、操作符(算术型、关系型和逻辑型)的访问符、映射到 java 类中静态方法的可扩展函数以及一组隐式对象。
el 提供了在 jsp 脚本编制元素范围外使用运行时表达式的功能。脚本编制元素是指页面中能够用于在 jsp 文件中嵌入 java 代码的元素。它们通常用于对象操作以及执行那些影响所生成内容的计算。jsp 2.0 将 el 表达式添加为一种脚本编制元素。
1、语法结构
${expression}
2、[ ]与.运算符
el 提供“.“和“[ ]“两种运算符来存取数据。
当要存取的属性名称中包含一些特殊字符,如.或?等并非字母或数字的符号,就一定要使用“[ ]“。例如:
${user.my-name}应当改为${user["my-name"] }
如果要动态取值时,就可以用“[ ]“来做,而“.“无法做到动态取值。例如:
${sessionscope.user[data]}中data 是一个变量
3、变量
el存取变量数据的方法很简单,例如:${username}。它的意思是取出某一范围中名称为username的变量。
因为我们并没有指定哪一个范围的username,所以它会依序从page、request、session、application范围查找。
假如途中找到username,就直接回传,不再继续找下去,但是假如全部的范围都没有找到时,就回传null。
属性范围在el中的名称
page pagescope
request requestscope
session sessionscope
application applicationscope
有效表达式可以包含文字、操作符、变量(对象引用)和函数调用。我们将分别了解这些有效表达式中的每一种:
1、文字
jsp 表达式语言定义可在表达式中使用的以下文字:
文字 | 文字的值 |
---|---|
boolean |
true 和 false |
integer |
与 java 类似。可以包含任何正数或负数,例如 24、-45、567 |
floating point |
与 java 类似。可以包含任何正的或负的浮点数,例如 -1.8e-45、4.567 |
string |
任何由单引号或双引号限定的字符串。对于单引号、双引号和反斜杠,使用反斜杠字符作为转义序列。必须注意,如果在字符串两端使用双引号,则单引号不需要转义。 |
null | null |
jsp 表达式语言提供以下操作符,其中大部分是 java 中常用的操作符:
术语 | 定义 |
---|---|
算术型 |
+、-(二元)、*、/、p、%、mod、-(一元) |
逻辑型 |
and、&&、or、||、!、not |
关系型 |
==、eq、!=、ne、、gt、<=、le、>=、ge。可以与其他值进行比较,或与布尔型、字符串型、整型或浮点型文字进行比较。 |
空 |
空操作符是前缀操作,可用于确定值是否为空。 |
条件型 | a ?b :c。根据 a 赋值的结果来赋值 b 或 c。 |
jsp 表达式语言定义了一组隐式对象,其中许多对象在 jsp scriplet 和表达式中可用:
术语 | 定义 |
---|---|
pagecontext |
jsp 页的上下文。它可以用于访问 jsp 隐式对象,如请求、响应、会话、输出、servletcontext 等。例如,${pagecontext.response} 为页面的响应对象赋值。 |
此外,还提供几个隐式对象,允许对以下对象进行简易访问:
术语 | 定义 |
---|---|
param |
将请求参数名称映射到单个字符串参数值(通过调用 servletrequest.getparameter (string name) 获得)。getparameter (string) 方法返回带有特定名称的参数。表达式 $(param.name) 相当于 request.getparameter (name)。 |
paramvalues |
将请求参数名称映射到一个数值数组(通过调用 servletrequest.getparameter (string name) 获得)。它与 param 隐式对象非常类似,但它检索一个字符串数组而不是单个值。表达式 ${paramvalues.name) 相当于 request.getparamtervalues(name)。 |
header |
将请求头名称映射到单个字符串头值(通过调用 servletrequest.getheader(string name) 获得)。表达式 ${header.name} 相当于 request.getheader(name)。 |
headervalues |
将请求头名称映射到一个数值数组(通过调用 servletrequest.getheaders(string) 获得)。它与头隐式对象非常类似。表达式 ${headervalues.name} 相当于 request.getheadervalues(name)。 |
cookie | 将 cookie 名称映射到单个 cookie 对象。向服务器发出的客户端请求可以获得一个或多个 cookie。表达式 ${cookie.name.value} 返回带有特定名称的第一个 cookie 值。如果请求包含多个同名的 cookie,则应该使用 ${headervalues.name} 表达式。 |
initparam | 将上下文初始化参数名称映射到单个值(通过调用 servletcontext.getinitparameter(string name) 获得)。 |
除了上述两种类型的隐式对象之外,还有些对象允许访问多种范围的变量,如 web 上下文、会话、请求、页面:
术语 | 定义 |
---|---|
pagescope |
将页面范围的变量名称映射到其值。例如,el 表达式可以使用 ${pagescope.objectname} 访问一个 jsp 中页面范围的对象,还可以使用 ${pagescope.objectname.attributename} 访问对象的属性。 |
requestscope |
将请求范围的变量名称映射到其值。该对象允许访问请求对象的属性。例如,el 表达式可以使用 ${requestscope.objectname} 访问一个 jsp 请求范围的对象,还可以使用 ${requestscope.objectname.attributename} 访问对象的属性。 |
sessionscope |
将会话范围的变量名称映射到其值。该对象允许访问会话对象的属性。例如:
|
applicationscope |
将应用程序范围的变量名称映射到其值。该隐式对象允许访问应用程序范围的对象。 |
1、注意当表达式根据名称引用这些对象之一时,返回的是相应的对象而不是相应的属性。例如:即使现有的 pagecontext 属性包含某些其他值,${pagecontext} 也返回 pagecontext 对象。
2、 注意 <%@ page iselignored="true" %> 表示是否禁用el语言,true表示禁止.false表示不禁止.jsp2.0中默认的启用el语言。
四、举例说明1、例如,
< %=request.getparameter(“username”)% > 等价于 ${ param.username }
2、el语言可以完成如果得到一个username为空,则不显示null,而是不显示值。
<%=user.getaddr( ) %> 等价于 ${user.addr}。
3、例如:
<% =request.getattribute(“userlist”) %> 等价于$ { requestscope.userlist }
4、例如,原理如上例3。
${ sessionscope.userlist } 1
${ sessionscope.userlist } 2
${ applicationscope.userlist } 3
${ pagescope.userlist } 4
${uselist} 含义:执行顺序为4 1 2 3。
“.”后面的只是一个字符串,并不是真正的内置对象,不能调用对象。
4、例如,
<%=user.getaddr( ) %> 等价于 ${user.addr}
第一句前面的user,为一个变量。
第二句后面user,必须为在某一个范围里的属性。
jstl实例:http://leaderbird.iteye.com/blog/275834
jstl实例参考
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" iselignored="false"%>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<%@ page import="java.util.*,com.j2ee14.ch12.user"%>
<%
collection users_c=new arraylist();
for(int i=0;i<3;i++)
{
user user=new user();
user.setusername("foo"+i);
user.setpassword("foo"+i);
users_c.add(user);
}
session.setattribute("users",users_c);
%>
<html>
<head>
<title>jstl:c:foreach的使用之一</title>
</head>
<body bgcolor="#ffffff"><center>
<h4>迭代某个collection中的元素。</h4>
<table border=1>
<tr><td>用户名</td><td>密码</td></tr>
<c:foreach var="users" items="${users}">
<tr>
<td><c:out value="${users.username}"/></td>
<td><c:out value="${users.password}"/></td>
</tr>
</c:foreach>
</table>
</center></body>
</html>
------------------------------------------------------------
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<html>
<head>
<tcounttle>jstl:c:foreach的使用之二</tcounttle>
</head>
<body bgcolor="#ffffff"><center>
<h4>第二种迭代:50-60</h4>
<c:foreach var="count" begin="50" end="60">
<c:out value="${count}"/> **
</c:foreach>
<h4>第二种迭代:10 to 100,step=10</h4>
<c:foreach var="count" begin="10" end="100" step="10">
<c:out value="${count}"/>**
</c:foreach>
</center>
</body>
</html>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<html>
<head>
<title>jstl:c:remove的使用</title>
</head>
<body bgcolor="#ffffff">
<c:set value="10000" var="maxuser" scope="application"/>
<c:set value="10" var="count" scope="session"/>
maxuser=<c:out value="${maxuser}"/><br>
count=<c:out value="${count}"/>
<hr>调用c:remove...
<c:remove var="maxuser" scope="application"/>
<c:remove var="count"/>
调用了c:remove后,参数值为:
maxuser=<c:out value="${maxuser}"/>,
count=<c:out value="${count}"/>,
</body>
</html>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<jsp:usebean id="user" class="com.j2ee14.ch12.user"/>
<html>
<head>
<title>jstl:的使用c:set</title>
</head>
<body bgcolor="#ffffff">
<hr>
设置一个属性,然后输出它<br>
<c:set var="maxcount" value="100"/>
<c:out value="${maxcount}"/>
<hr>设置属性时,把它的值放在标签的body中。
<c:set var="password">
ksdjfxsdf234234
</c:set>
<c:out value="${password}"/>
<hr>设置javabean的属性,然后输出这些属性值:
<c:set value="hellking" target="${user}" property="username"/>
username=<c:out value="${user.username}"/>
<hr>设置属性,并且指定它们的范围,属性的默认范围是page。
<c:set value="20" var="maxideltime" scope="session"/>
<c:set value="next.jsp" var="nextpage" scope="page"/>
</body>
</html>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<html>
<head>
<title>jstl c:url 的使用</title>
</head>
<body bgcolor="#ffffff">
<c:url var="footer" value="footer.jsp" scope="page">
<c:param name="id" value="hellking"/>
</c:url>
<c:out value="${footer}"/>
<br>另一种没有参数的url<br>
<c:url value="footer.jsp"/>
</body>
</html>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<html>
<head>
<title>jstl:catch的使用</title>
</head>
<body bgcolor="#ffffff">
<c:catch var="error">
<%
integer.parseint("sdkfj");
%>
</c:catch>
<hr>异常:
<c:out value="${error}"/>
<hr>异常 exception.getmessage=
<c:out value="${error.message}"/>
<hr> 异常exception.getcause=
<c:out value="${error.cause}"/>
</body>
</html>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<c:set var="count" value="100"/>
<html>
<head>
<title>jstl:c:choose的使用</title>
</head>
<body bgcolor="#ffffff">
<c:choose>
<c:when test="${count <=0}">
<font color="blue">
</c:when>
<c:when test="${count<=60&&count>0}">
<font color="red">
</c:when>
<c:otherwise>
<font color="green">
</c:otherwise>
</c:choose>
count的值是:<c:out value="${count}"/>
</font>
</body>
</html>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<html>
<head>
<title>jstl:c:if的使用</title>
</head>
<body bgcolor="#ffffff">
<c:set var="count" value="100"/>
<c:if test="${count>78}">
count>78
</c:if>
</body>
</html>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<html>
<head>
<title>jstl:c:import的使用</title>
</head>
<body bgcolor="#ffffff">
<h3>绝对路径 url</h3>
<blockquote>
<ex:escapehtml>
<c:import url="http://127.0.0.1:8080/ch12/footer.jsp"/>
</ex:escapehtml>
</blockquote>
<h3>相对路径并且传递参数到指定的url</h3>
<blockquote>
<c:import url="footer.jsp" charencoding="gb2312">
<c:param name="username" value="hellking"/>
</c:import>
</blockquote>
</body>
</html>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<html>
<head>
<title>jstl: c:out的使用</title>
</head>
<body bgcolor="#ffffff">
<hr>
<c:set var="sessionattr" value="sessionvalue" scope="session"/>
<c:set var="pageattr" value="pagevalue" scope="page"/>
<c:set var="requestattr" value="requestvalue" scope="request"/>
<c:out value="以下输出的是前面设置的属性<br>" escapexml="false"/>
<c:out value="${sessionattr}"/>
<c:out value="${pageattr}"/>
<c:out value="${requestattr}"/>
<c:out value="${test_nodef}" default="没有test_nodef这个变量"/>
</html>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<html>
<head>
<title>jstl c:param的使用</title>
</head>
<body bgcolor="#ffffff">
<c:redirect url="footer.jsp">
<c:param name="username">
hellking
</c:param>
</c:redirect>
</body>
</html>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contenttype="text/html; charset=gb2312" language="java" %>
<html>
<head>
<title>jstl:c:redirect的使用</title>
</head>
<body bgcolor="#cc99cc">
<c:url value="footer.jsp" var="nextpage"><c:param name="username" value="hellking"/></c:url>
<c:redirect url="${nextpage}"/>
</body>
</html>
推荐阅读
-
Shell中正则表达式及sed和awk常见问题
-
PHP 正则表达式实例
-
PHP使用正则表达式获取微博中的话题和对象名_PHP
-
php使用curl和正则表达式抓取网页数据示例_PHP教程
-
Integration Services 学习(4):变量和表达式
-
正则表达式中/i,/g,/ig,/gi,/m的区别和含义,iggi_PHP教程
-
简单谈谈JSP/EL表达式
-
实例解析JSP中EL表达式的各种运用
-
POSIX 风格和兼容 Perl 风格两种正则表达式主要函数的类比(preg_match, preg_replace, ereg, ereg_replace)
-
javascript - 正则表达式,如何分组?地址和标题分一组