JSTL

作者: 草木不语只深深绿 | 来源:发表于2017-07-18 19:43 被阅读0次

简介

JSTL JSP Standard Tag Library 标准标签库 JSTL允许开人员可以像使用HTML标签 那样在JSP中开发Java功能。

需要的包

为了能够在JSP 中使用JSTL,首先需要两个jar包,分别是jstl.jar 和standard.jar

语法

在页面中使用JSTL需要在jsp中通过指令进行设置。

<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

prefix="c" 表示后续的标签使用都会以<c: 开头

  • set
<c:set var="name" value="${'gareen'}" scope="request" />
在作用域request中设置name,相当于
<%request.setAttribute("name","gareen")%>
  • out
<c:out value="${name}" />
相当于 <%=request.getAttribute("name")%>
  • remove
<c:remove var="name" scope="request" />
在作用域request中删掉name,相当于
<%request.removeAttribute("name")%>
  • if else
    JSTL通过<c:if test=""> 进行条件判断
    但是JSTP没有<c:else,所以常用的办法是在<c:if的条件里取反
    配合if使用的还有通过empty进行为空判断
    empty可以判断对象是否为null,字符串长度是否为0,集合长度是否为0
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<c:set var="hp" value="${10}" scope="request" />
<c:if test="${hp<5}">
    <p>这个英雄要挂了</p>
</c:if> 
<c:if test="${!(hp<5)}">
    <p>这个英雄觉得自己还可以再抢救抢救</p>
</c:if>
<% 
    pageContext.setAttribute("weapon", null);
    pageContext.setAttribute("lastwords", "");
    pageContext.setAttribute("items", new ArrayList());
%>
<c:if test="${empty weapon}">
    <p>没有装备武器</p>
</c:if>
<c:if test="${empty lastwords}">
    <p>挂了也没有遗言</p>
</c:if>
<c:if test="${empty items}">
    <p>物品栏为空</p>
</c:if>
  • choose
    虽然JSTL没有提供else标签,但是提供了一个else功能的标签
<c:choose>
  <c:when test="${hp<5}">
  </c:when>
  <c:otherwise>
  </c:otherwise>
</c:choose>
  • forEach
    可以在JSP中使用for循环,但是其可读性很差。 借助JSTL的c:forEach标签,可以改善可读性。
<c:forEach items="${heros}" var="hero" varStatus="st">
items="${heros}" 表示遍历的集合
var="hero" 表示把每一个集合中的元素放在hero上
varStatus="st" 表示遍历的状态
  • forTokens
    <c:forTokens专门用于字符串拆分,并且可以指定多个分隔符
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>  
<c:set var="heros" value="塔姆,艾克;巴德|雷克赛!卡莉丝塔" />  
<c:forTokens items="${heros}" delims=":;|!" var="hero">
    <c:out value="${hero}" /> <br />
</c:forTokens>
  • fmt:formatNumber 格式化数字
    fmt 标签常用来进行格式化,其中fmt:formatNumber用于格式化数字
    使用之前要加上
<%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix='fmt'%>

用法如下:

<fmt:formatNumber type="number" value="${money}" minFractionDigits="2"/>

<fmt:formatNumber 表示格式化数字
minFractionDigits 小数点至少要有的位数
maxFractionDigits 小数点最多能有的位数

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt"  prefix='fmt' %>   
<c:set var="money" value="888.8" />
<c:set var="pi" value="3.1415926" />
最少两个小数点:
<fmt:formatNumber type="number" value="${money}" minFractionDigits="2"/>
<br>
最多两个小数点:
<fmt:formatNumber type="number" value="${pi}" maxFractionDigits="2" />
  • fmt:formatDate 格式化日期
    fmt 标签常用来进行格式化,其中fmt:formatDate 用于格式化日期
    和fmt:formatNumber 格式化数字一样,使用之前要加上
<%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix='fmt'%>

具体用法:

<fmt:formatDate value="${now}" pattern="G yyyy年MM月dd日 E"/>
<fmt:formatDate value="${now}" pattern="a HH:mm:ss.S z"/>
<fmt:formatDate value="${now}" pattern="yyyy-MM-dd HH:mm:ss"/>

<fmt:formatDate 表示格式化日期
yyyy 表示年份
MM 表示月份
dd 表示日期
E 表示星期几
a 表示是上午还是下午
HH 表示小时
mm 表示分钟
ss 表示秒
S 表示毫秒
z 表示时区

  • fn:
    fn标签提供各种实用功能,首先使用之前使用加入如下指令
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> 

具体用法

${fn:substring(name, 0, 5)}

相关文章

  • JavaWeb之 JSTL

    JSTL jstl的概述 是apache的东西,依赖EL 使用jstl需要导入jstl1.2.jar【JSTL 1...

  • JavaWeb(第十二周)

    day13 一、JSTL标签库 1.什么是JSTL Apache的东西,依赖EL 使用JSTL需要导入jstl1....

  • 【JavaWeb】JSTL标签库

    JSTL标签库 JSTL标准标签库;JSTL用于简化JSP开发,提高代码的可读性与可维护性;JSTL由SUN(Or...

  • jstl标签库

    一、jstl标签库 jstl是apache对EL表达式的扩展(也就是说JSTL依赖EL),JSTL是标签语言。js...

  • NO.6 JSTL

    1、什么是JSTL JSTL(JavaServerPages Standard Tag Library)JSP标准...

  • Web 基础17 JSP之JSTL入门

    1.1 JSTL简介   JSTL(JavaServer Pages Standard Tag Library,J...

  • 2018-10-06

    JSTL概念 JSTL(JavaServer Pages Standard Tag Library,JSP标准标签...

  • 2018-10-06

    JSTL概念 JSTL(JavaServer Pages Standard Tag Library,JSP标准标签...

  • 【Java】【JSTL】标准包

    JSTL (JavaServerPages Standard Tag Library)JSP标准标签库 JSTL的...

  • JAVA Web学习(18)___第12章JSTL标签

    第12章JSTL标签 12.1 JSTL标签库简介 根据JSTL标签所提供的功能,可以将其分为5个类别。 核心标签...

网友评论

      本文标题:JSTL

      本文链接:https://www.haomeiwen.com/subject/dqghkxtx.html