我的代码中有两个数组
List<Double> centralityList = (List<Double>) request
.getAttribute("centralityList");
List<String> labelList = (List<String>) request
.getAttribute("labelList");.
现在我在这两个数组中有六个字符串值和相应的6个字符串双精度值。我的问题是如何在我的JSP中以表格格式显示它们?这可能吗
例如:
标签列表包含[a,b,c,d,e]
中心列表包含 - [4,6,8,9,0]
所以现在我想显示输出:
label list centrality list
a 4
b 6
c 8.
. .
等
答案 0 :(得分:9)
是的,你当然可以。您可以使用scriplets但不建议使用它们。而是使用JSTL。
试试这个:
将它放在JSP的顶部:
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
用于显示数据的代码
<c:forEach begin="0" end="${fn:length(centralityList) - 1}" var="index">
<tr>
<td><c:out value="${centralityList[index]}"/></td>
<td><c:out value="${labelList[index]}"/></td>
</tr>
</c:forEach>
答案 1 :(得分:2)
试试这段代码
<%
List<Double> centralityList = (List<Double>) request
.getAttribute("centralityList");
List<String> labelList = (List<String>) request
.getAttribute("labelList");
String myString="";
%>
<table>
<tr><td>
<%
for(int i = 0; i < labelList.size(); i++)
{
out.println((String)labelList.get(i));
}
%>
</td><td>
<%
for(int i = 0; i < centralityList.size(); i++)
{
out.println((double)centralityList.get(i));
}
%>
</td>
</table>
你可以通过使用更简单和更好的方式来实现这一目标,但是在你的代码中我没有找到任何使用JSTL的证据,所以这就是现在的方式
答案 2 :(得分:0)
您可以使用JSTL标记并遍历此 -
<c:forEach var="Array" items="userNames">
// do something with the element
</c:forEach>
在你的jsp页面中使用它
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>