JSTL 标签库详解(一个不漏)
采集自:www.web-tag 转载请保留出处
 catch 
<c:catch>动作用于捕获JSP元素在其体中抛出的异常。
示范代码:
<c:catch var="err">
         ${param.sampleSingleValue[9] == 3}
</c:catch> 
${err}
更多 catch 信息
 choose 
用于控制嵌套<c:when><c:otherwise>动作的处理。
示范代码:
<c:choose> 
<c:when test="${Sale}"> ...</c:when> 
<c:otherwise> ....</c:otherwise> 
</c:choose> 
更多 choose 信息
 forEach 
<c:forEach>动作将其体反复计算固定次数,或者针对一个集合中的每个元素分别计算一次体。
示范代码:
<c:forEach  items="${map}"  var="mymap"  >
    <c:out  value="${mymap.key}"  />
    <c:out  value="${mymap.value}"  />
</c:forEach> 
更多 forEach 信息
 forTokens 
标签可以根据某个分隔符分隔指定字符串,相当于 java.util.StringTokenizer类。
示范代码:
<c:forTokens items="${userPhone}" delims="-" var="item">
${item}
</c:forTokens>
更多 forTokens 信息
 if 
<c:if>动作仅当所指定的表达式计算为true时才计算其体。
示范代码:
<c:if test="${empty&pDate}"> 
.....
</c:if>
更多 if 信息
 import 
标签允许包含另一个JSP页面到本页面来。
示范代码:
<c:import url="/MyHtml.html" var="thisPage" />
 
更多 import 信息
 otherwise 
它等价于“else”语句。
示范代码:
<c:choose>
    <c:when test="${paramValues.sampleValue[2] == 11}">
        not 12 not 13,it is 11
    </c:when>
    <c:otherwise>not 11 1213</c:otherwise>
</c:choose>
更多 otherwise 信息
 out 
<c:out>标签是一个最常用的标签,用于在 JSP 中显示数据。它的作用是用来替代通过JSP
 置对象out或者<%=%>标签来输出对象的值。
示范代码:
<c:out value="${sessionScope.username}"/> 
更多 out 信息
 param 
用于传递参数,用来为包含或重定向的页面传递参数。
示范代码:
trim函数的作用是删除文本的什么空格<c:redirect url="/MyHtml.jsp">
<c:param name="userName" value=”RW” />
</c:redirect>
更多 param 信息
 redirect 
可以将客户端的请求从一个 JSP 网页导向到其他文件。
示范代码:
<c:redirect url="java.sun"> 
  <c:param name="param" value="value"/> 
</c:redirect> 
更多 redirect 信息
 remove 
<c:remove>标签用于删除存在于scope中的变量。类似于<%veAttribute(“name”)%> 
<%veAttribute(“name”)%>...
示范代码:
<c:remove var="username" scope="session"/>
更多 remove 信息
 set 
<c:set> 签用于为变量或JavaBean中的变量属性赋值的工作。这个标签用于在某个范围(pagerequestsessionapplication )中使用某个名字设定特定的值,或者设定某个已经存在的javabean对象的属性。他类似 <%request.setAttrbute("name","value");%>
示范代码:
<c:set value="this is andy" var="oneString"/>
更多 set 信息
 url 
主要用来产生一个URL
示范代码:
<c:url value="www.javafan " >
<c:param name="param" value="value"/> 
</c:url> 
 
更多 url 信息
 when 
<c:when>标签等价于“if”语句,它包含一个test属性,该属性表示需要判断的条件。
示范代码:
<c:when test="${condition1}">
        condition1  true
 </c:when>
更多 when 信息
 bundle 
<fmt:bundle> 这签用于资源配置文件的绑定,并在页面中显示出来。
示范代码:
<fmt:bundle basename="st"> 
更多 bundle 信息
 formatDate 
<fmt:formatDate>  标签用于格式化日期。
示范代码:
<fmt:formatDate value="${ated}" pattern="h:mm a zz"/>
更多 formatDate 信息
 formatNumber 
<fmt: formatNumber >  签用于格式化数字。
示范代码:
<fmt:formatNumber value="1000.888" type="currency" var="money"/>
更多 formatNumber 信息
 message 
用于信息显示的标签,将显示资源配置文件中定义的信息。
示范代码:
<fmt:message key="passWord" bundle="${applicationBundle}" /> 
更多 message 信息
 param 
<fmt:param> 标签  用于参数传递。
<fmt:param>  标签应该位于  <fmt:message>  标签内,将为该消息标签提供参数值。它只有一个属性  value    <fmt:param>  标签有两种使用版本,一种是直接将参数值写在  value  属性中,另一种是将参数值写在标签体内。
示范代码:
<fmt:message key="userName"/>
更多 param 信息
 parseDate 
<fmt:parseDate>  标签用于解析一个日期,并将结果作为  java.lang.Date  类型的实例返回。 
示范代码:
<fmt:parseDate var="i" type="date" value="2006-12-11" />
更多 parseDate 信息
 parseNumber 
<fmt:parseNumber>  标签用于解析一个数字,并将结果作为  java.lang.Number  类的实例返回。
示范代码:
<fmt:parseNumber value="15%" type="percent" var="num"/>
更多 parseNumber 信息
 requestEncoding 
<fmt:requestEncoding>  标签用于为请求设置字符编码。它只有一个属性  value  ,在该属性中可以定义字符编码。
示范代码:
<fmt:requestEncoding value="GB18030"/> 格式化文本编码
更多 requestEncoding 信息
 setBundle 
<fmt:setBundle>  标签则允许将资源配置文件保存为一个变量,在之后的工作可以根据该变量来进行。 
示范代码:
<fmt:setLocale value="zh_CN"/> 
<fmt:setBundle basename="applicationMessage" var="applicationBundle"/> 
更多 setBundle 信息
 setLocale 
<fmt:setLocale> 标签用于设置本地化环境。
示范代码:
<fmt:setLocale value="zh_TW"/>
更多 setLocale 信息
 setTimeZone 
<fmt:timeZone> <fmt:setTimeZone> 这两组标签都用于设定一个时区。
更多 setTimeZone 信息
 timeZone 
<fmt:timeZone> <fmt:setTimeZone> 这两组标签都用于设定一个时区。
示范代码:
<fmt:timeZone value="US/Eastern">
...
</fmt:timeZone>
更多 timeZone 信息
JSTL functions
 contains 
fn:contains  函数用来判断源字符串是否包含子字符串。它包括  string    substring  两个参数,它们都是  String  类型,分布表示源字符串和子字符串。其返回结果为一个  boolean  类型的值。下面看一个示例。 
${fn:contains("ABC", "a")}<br> 
${fn:contains("ABC", "A")}<br> 
前者返回“  false  ”,后者返回“  true  ”

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。