首先:在JSP页面上加入标签库
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
1、读取session
后台代码:
this.session.setAttribute("emailurl", emailurl);
前台读取:
${sessionScope.emailurl}
2、读取request值
后台代码:
this.request.setAttribute("mark", 0);
前台读取:
${mark}
3、判断 (注意:此写法没有else)
<c:if test="${mark == 1}">
XXXX
<c:if>
4、循环:
后台列表
this.request.setAttribute("bookList", bookList);
前台取值
<c:forEach items="${bookList}" var="book">
取值:${book.name }
</c:forEach>
5、取列表长度:
${fn:length(list )}
补:列表奇偶行判断:
<c:forEach items="${excelList}" var="i" varStatus="obj">
<c:if test="${obj.count%2 == '0'}">
奇数行。。。
</c:if>
<c:if test="${obj.count%2 != '0'}">
偶数行。。。
</c:if>
</c:forEach>
【foreach】当for循环使用:
<c:forEach var="x" begin="0" end="3"> ${x} </c:forEach>
6、choose操作 (相当于if else)
<c:choose>
<c:when test="expression">
body content
</c:when>
...
<c:otherwise>
body content
</c:otherwise>
</c:choose>
7、判断是否为空:
<c:if test="${empty user}">无信息!</c:if>为空
8、字符串截取:
<c:choose>
<c:when test="${fn:length(hotbook.name) > 5}">
<c:out value="${fn:substring(hotbook.name, 0, 5)}..." />
</c:when>
<c:otherwise>
<c:out value="${hotbook.name}" />
</c:otherwise>
</c:choose>
===============================================
导入<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
1、小数点保留两位:
<fmt:formatNumber type="number" value="${book.price * book.highsale }" pattern="0.0" maxFractionDigits="1"/>
注:minFractionDigits表示小数位数 想保留几位在这里改
pattern是显示格式 若不加这个属性 在结果刚好为整数的时候则不会显示0.0格式,而直接显示整数格式。
===============================================
2、在列表中自动生成序号
<c:forEach items="${imagesList }" varStatus="status">
${status.index+1}
</c:forEach>
用了一个varStatus参数,index是其属性。
3、时间上的处理
后台JAVAinsertime的值为:Sun Jun 30 12:12:12 CST 2013
格式化后为:2013-6-30 12:12:12
<fmt:formatDate value="${art.inserttime}" type="both"/>
参考资料:
http://blog.sina.com.cn/s/blog_633c77c40100tjn3.html