Ola amigos, tenho uma classe DAO que tem o seguinte vetor:
public Vector<Produtos> getRegistros()
{
Vector<Produtos> retorno = new Vector<Produtos>();
try
{
Statement st = con.createStatement();
String sql="select * from tb_produto";
ResultSet rs = st.executeQuery(sql);
while (rs.next())
{
Produtos dados=new Produtos();
dados.setDs_produto(rs.getString("ds_produto"));
dados.setQt_quantidade(rs.getInt("qt_quantidade"));
dados.setVl_valor(rs.getDouble("vl_valor"));
retorno.add(dados);
}
return retorno;
}
catch (SQLException ex)
{
ex.printStackTrace();
return null;
}
}
Como eu utilizo este codigo diretamente num JSP usando a seguinte tabela:
<table style="width: 73%" class="style1">
<tr style="font-weight: 700; border-style: solid; border-color: #EEEEEE; background-color: #EEEEEE">
<td style="width: 385px">Produto</td>
<td style="text-align: center; width: 95px">Quantidade</td>
<td style="text-align: center">Valor</td>
</tr>
<tr style="font-weight: 700">
<td style="width: 385px"> </td>
<td style="text-align: center; width: 95px"> </td>
<td style="text-align: center"> </td>
</tr>
</table>
Na verdade gostaria de usar o interator, mas eu n sei como fazer… alguem poderia me ajudar?
abraços