使用ResultSet数据填充JSP表

时间:2016-01-04 16:57:04

标签: java html mysql jsp

我正在尝试填充我的JSP表:

library(reshape2)
m <- melt(df1, c("Server", "Epoch"))
aggregate(variable~Server+Epoch, m[m$value==1,], FUN=function(x) cbind(length(x), toString(x)))
# Server      Epoch variable.1    variable.2
# 1   C301 1420100400          2          A, C
# 2   C301 1420152000          1             B
# 3   C301 1420238100          3       A, B, C
# 4   C301 1420324500          5 A, B, C, D, E

使用来自我的ResultSet的数据,我使用Java检索,如下所示:

<table border="1" style="width:100%" id="t01">
<tr>
<th>Time</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
<th>Sunday</th>
</tr>
<%
int id = 1;
int y = 7;

for(int i = 0; i < 15;i++){
     if (i!=0){ %>
        </tr>
        <tr>
        <td><%=y%>:00</td><%
        y=y+1;
     }
     else{%>
          <tr>
          <td><%=y%>:00</td>
          <%
          y=y+1;
          }
   for(int j = 0; j < 7; j++ ){ %>
        <td id=<%=id%> onclick="go(this)"> </td>
        <%
         id = id+1;
    }

  }
  %>

将约会插入此表的最佳方法是什么?

SQL表 - 约会有以下列: 姓名,身份证,用户

其中id指的是Time Cell,它发生在那里。

我想到可能会获得数据库中每个约会的ID并将其插入到JSP表的创建中,但我真的不知道如何。

0 个答案:

没有答案