jstl中定义String数组

 

有人提出了个这个问题,想了半天可以使用fn函数实现
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>










AB



如果不能使用fn函数就麻烦了

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<% int[] arrayvalue={0,1,5,10,15,88};%>









AB

 <% Integer j=(Integer)pageContext.getAttribute("i"); %>
 <%= arrayvalue[j.intValue()] %>

本文出处不详,引用再次转载地址:

http://changfei0216.blog.hexun.com/6717281_d.html

你可能感兴趣的:(Java)