jstl函数标签库中的各函数的用法
=============================================================================
1.引入函数库:函数库同样需要使用taglib指令来引入<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
2.函数的调用方式:在EL表达式中采用前缀 + 冒号 + 函数名的方式进行调用.
3.各函数的具体作用如下表所示:
函数 | 描述 |
fn:contains(string, substring) | 如果参数string中包含参数substring,返回true |
fn:containsIgnoreCase(string, substring) | 如果参数string中包含参数substring(忽略大小写),返回true |
fn:endsWith(string, suffix) | 如果参数 string 以参数suffix结尾,返回true |
fn:escapeXml(string) | 将有特殊意义的XML (和HTML)转换为对应的XML character entity code,并返回 |
fn:indexOf(string, substring) | 返回参数substring在参数string中第一次出现的位置 |
fn:join(array, separator) | 将一个给定的数组array用给定的间隔符separator串在一起,组成一个新的字符串并返回。 |
fn:length(item) | 返回参数item中包含元素的数量。参数Item类型是数组、collection或者String。如果是String类型,返回值是String中的字符数。 |
fn:replace(string, before, after) | 返回一个String对象。用参数after字符串替换参数string中所有出现参数before字符串的地方,并返回替换后的结果 |
fn:split(string, separator) | 返回一个数组,以参数separator 为分割符分割参数string,分割后的每一部分就是数组的一个元素 |
fn:startsWith(string, prefix) | 如果参数string以参数prefix开头,返回true |
fn:substring(string, begin, end) | 返回参数string部分字符串, 从参数begin开始到参数end位置,包括end位置的字符 |
fn:substringAfter(string, substring) | 返回参数substring在参数string中后面的那一部分字符串 |
fn:substringBefore(string, substring) | 返回参数substring在参数string中前面的那一部分字符串 |
fn:toLowerCase(string) | 将参数string所有的字符变为小写,并将其返回 |
fn:toUpperCase(string) | 将参数string所有的字符变为大写,并将其返回 |
fn:trim(string) | 去除参数string 首尾的空格,并将其返回 |
jstl格式化库的使用:
=============================================================================
格式化标签库中的标签主要分为三类,分别是国际化标签,信息显示标签,数字及日期格式化标签.其中在平时的web开发中使用频率最高的是数字及日期格式化标签,所以本文中将通过实例对格式化标签的使用进行介绍.
1.格式化日期标签的使用:
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<!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=GB18030">
<title>Insert title here</title>
</head>
<body>
<h1>测试格式化日期标签</h1><br>
today(default):<fmt:formatDate value="${today }"/><br>
today(type="date"):<fmt:formatDate value="${today }" type="date"/><br>
today(type="time"):<fmt:formatDate value="${today }" type="time"/><br>
today(type="both"):<fmt:formatDate value="${today }" type="both"/><br>
today(dateStyle="short"):<fmt:formatDate value="${today }" dateStyle="short"/><br>
today(dateStyle="meidum"):<fmt:formatDate value="${today }" dateStyle="medium"/><br>
today(dateStyle="long"):<fmt:formatDate value="${today }" dateStyle="long"/><br>
today(dateStyle="full"):<fmt:formatDate value="${today }" dateStyle="full"/><br>
today(pattern="yyyy/MM/dd HH:mm:ss"):<fmt:formatDate value="${today }" pattern="yyyy/MM/dd HH:mm:ss" var="currentDate"/><br>
${currentDate }<br>
</body>
</html>
页面展现效果如下:
2.格式化数字标签的使用:
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<!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=GB18030">
<title>Insert title here</title>
</head>
<body>
<h1>测试格式化数字标签</h1><br>
n(default):<fmt:formatNumber value="${n }" /><br>
n(pattern="###,###,###.####"):<fmt:formatNumber value="${n }" pattern="###,###,###.####" /><br>
n(pattern="###,###,###.0000"):<fmt:formatNumber value="${n }" pattern="###,###,###.0000" /><br>
n(groupingUsed="false"):<fmt:formatNumber value="${n }" groupingUsed="false" /><br>
n(maxIntegerDigits="12" minIntegerDigits="6"):<fmt:formatNumber value="${n }" maxIntegerDigits="12" minIntegerDigits="6" /><br>
n(minFractionDigits="4" maxFractionDigits="6"):<fmt:formatNumber value="${n }" minFractionDigits="4" maxFractionDigits="6" /><br>
n(type="currency"):<fmt:formatNumber value="${n }" type="currency" /><br>
n(type="currency" currencySymbol="$"):<fmt:formatNumber value="${n }" type="currency" currencySymbol="$"/><br>
n(type="percent"):<fmt:formatNumber value="${p }" type="percent" /><br>
n(type="percent"):<fmt:formatNumber value="${p }" type="percent" minFractionDigits="2" /><br>
</body>
</html>
页面展现效果如下:
格式化数字jsp页面与格式化日期jsp页面对应的servlet后台代码:
import java.io.IOException;
import java.util.Date;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class JstlFmtServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
request.setAttribute("today", new Date());
request.setAttribute("n", 12345678.123);
request.setAttribute("p", 0.1234567);
//转发至jsp页面
request.getRequestDispatcher("/jstl_fmt.jsp").forward(request, response);
}
}
在使用各种标签的时候需要注意的一个重要问题是jsp的作用域问题。当一个变量设置到不同的作用域中时,他的生命周期是不一样的。jsp的四个作用于分别是page,request,session,application。那这四种作用域的作用范围到底是怎样的呢?
1.当我们将变量放到pageContext中时它的作用域就是page也就是说该变量只可以在本页面中取到,在别的页面中是取不到的。
2.如果将变量存放到request中,通过request的分发器将request转发到其他页面后,在转发后的页面中同样可以取得变量。
3.存放到session中的变量在本次回话中都可以取到,所谓的本次回话可以简单的理解为用户从打开浏览器到关闭浏览器的中间过程,在这个过程中,无论在哪个页面都可以从session中取出变量,当然前提是session的时间未过期。
4.application的作用范围是最大的,存在于application中的变量的存在于该应用从开启到关闭的整个过程中。该变量由使用该应用的所有用户所共享。也正是它的公用性使得存放在apllication中的变量不具有安全性,如果一个用户更改了该变量,那其他所有用户取得变量值将是被更改后的新值。这也是该作用于与前面三个作用于的最大不同点,其他三个作用于都具有隔离性,无论如何修改都不会影响其他人的数据。