程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> JSTL標簽功能集錦,jstl標簽集錦

JSTL標簽功能集錦,jstl標簽集錦

編輯:JAVA綜合教程

JSTL標簽功能集錦,jstl標簽集錦


1、<fmt:parseNumber integerOnly="true" value="2/3" /> 結果為0

功能:fmt:parseNumber格式化小數為整數

2、${fn:substring(userInfo.username,0,1)}截取userInfo.username的第一個字符 3、${fn:length(vals)>0}求vals集合的長度 4、fmt:formatDate 的輸出格式

<fmt:formatNumber  value="${user.adoptrate}" type="percent"/>   將數字轉化為百分比

<fmt:formatDate value="${isoDate}" type="both"/>                    2004-5-31 23:59:59

<fmt:formatDate value="${date}" type="date"/>                       2004-4-1

<fmt:formatDate value="${isoDate}" type="time"/>                     23:59:59

<fmt:formatDate value="${isoDate}" type="date" date/>   2004-5-31

<fmt:formatDate value="${isoDate}" type="date" date/>     04-5-31

<fmt:formatDate value="${isoDate}" type="date" date/>  2004-5-31

<fmt:formatDate value="${isoDate}" type="date" date/>     2004年5月31日

<fmt:formatDate value="${isoDate}" type="date" date/>    2004年5月31日 星期一

<fmt:formatDate value="${isoDate}" type="time" time/>   23:59:59

<fmt:formatDate value="${isoDate}" type="time" time/>    下午11:59

<fmt:formatDate value="${isoDate}" type="time" time/>     23:59:59

<fmt:formatDate value="${isoDate}" type="time" time/>    下午11時59分59秒

<fmt:formatDate value="${isoDate}" type="time" time/>   下午11時59分59秒 CDT

<fmt:formatDate value="${date}" type="both" pattern="EEEE, MMMM d, yyyy HH:mm:ss Z"/>
星期四, 四月 1, 2004 13:30:00 -0600

<fmt:formatDate value="${isoDate}" type="both" pattern="d MMM yy, h:m:s a zzzz/>
31 五月 04, 11:59:59 下午 中央夏令時

  <fmt:formatDate value="${time}" pattern="yyyy-MM-dd HH:mm:ss" /> 2016-01-19 09:41:32(24)     5、JSP讀取配置文件 <fmt:bundle basename="test">    <fmt:message key="hello"></fmt:message> </fmt:bundle>


test.properties文件: hello=Thisisabasemsg

6、JSTL的fn方法庫

1fn:contains(string, substring)  如果參數string中包含參數substring,返回true。 

2fn:containsIgnoreCase(string, substring) 
如果參數string中包含參數substring(忽略大小寫),返回true 

 

3fn:endsWith(string, suffix)  如果參數 string 以參數suffix結尾,返回true。  4fn:escapeXml(string)  將有特殊意義的XML (和HTML)轉換為對應的XML character entity code,並返回。 5fn:indexOf(string, substring)  返回參數substring在參數string中第一次出現的位置。  6fn:join(array, separator)  將一個給定的數組array用給定的間隔符separator串在一起,組成一個新的字符串並返回。   7fn:length(item)  返回參數item中包含元素的數量。參數Item類型是數組、collection或者String。如果是String類型,返回值是String中的字符數。 8fn:replace(string, before, after)  返回一個String對象。用參數after字符串替換參數string中所有出現參數before字符串的地方,並返回替換後的結果。  9fn:startsWith(string, prefix)  如果參數string以參數prefix開頭,返回true。  10fn:substring(string, begin, end)  返回參數string部分字符串, 從參數begin開始到參數end位置。  11fn:substringAfter(string, substring)  返回參數substring在參數string中後面的那一部分字符串。  12fn:substringBefore(string, substring)  返回參數substring在參數string中前面的那一部分字符串。  13fn:toLowerCase(string)  將參數string所有的字符變為小寫,並將其返回。  14fn:toUpperCase(string)  將參數string所有的字符變為大寫,並將其返回。  15fn:trim(string)  去除參數string 首尾的空格,並將其返回。   7、 <c:if test= "${!empty attestation.searchWord }">         <c:set value=" ${fn:split(attestation.searchWord, ',') }" var="searchWords" />         <c:forEach items= "${searchWords }" var="searchWord">              <span class= "later_tag2">${searchWord} </span> &nbsp;         </c:forEach> </c:if>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved