jstl字符窜的截取

有的内容太长在页面,不易在页面显示出来,可以显示开头部分后面用“。。。。。。”代替,可以在页面上直接用jstl所带的标签进行截取。

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>引入C标签
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%> 引入函数

<td>
      <c:if test="${fn:length(util_worreport.content)>10}">判断字符串的长度,其中fn是标签名称,length是方法,util_worreport.content要显示的内容
            ${fn:substring(util_worreport.content,0, 10)}......
      </c:if>
      <c:if test="${fn:length(util_worreport.content)<=10}">
            ${util_worreport.content}

      </c:if>
  </td>

你可能感兴趣的:(jstl)