關於EL函式庫的使用
阿新 • • 發佈:2018-12-19
EL函式庫
對於任何javaweb專案,WEB-INF/lib下都帶有這樣的jar包 如果我們要使用EL函式庫裡面的函式,那麼我們必須自己手動找到jstl-impl-1.2.2.jar包裡的函式檔案放入web-inf中。這裡我們使用function函式,(fn.tld) 這是jsp頁面
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'b.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
${fn:contains("abc","a"}
</body>
</html>
在這個頁面中,我們用taglib指令匯入了EL函式庫
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
下面這段程式碼是用了函式庫的一個功能,檢測abc字串是否包含a字串,返回boolean
${fn:contains("abc","a"}