jstljsp-遍历bean的向量

jstljsp-遍历bean的向量,第1张

jstl / jsp-遍历bean的向量

我认为您正在寻找的是 < c:foreach>标记。

例如,在MyClass实例(如下定义)上打印值myInt属性:

<c:foreach items="${vectors name}" var="pos" >       <!-- print the value of myInt for each position of the array.  Method getMyInt() must exist in pos object.-->       <c:out value="${pos.myInt}"/>       <!-- print the value of myInt for each composed instance. Method getRelatedInstance() must exist in pos object.  -->       <c:out value="${pos.relatedInstance.myInt}"/></c:foreach>

其中 载体名称 是矢量的名称,例如,做一个后

假设您有一个类myClass。

public class MyClass{   private MyClass relatedInstance;        //some members and methods   public int getMyInt(){     //return something   }   public MyClass getRelatedInstance(){     return this.relatedInstance;}List<myClass> my_vector = getFilledList();request.setAttribute("vectors name",my_vector)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5442098.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存