Bonjour à tous !
J'essais désespérément d'afficher un tableau avec Struts bean:write. Je ne veux pas faire de logic:iterate puisque mon affichage est particulier, bien que pour le moment je l'ai simplifié pour apprendre Struts.
Voilà mon JSP :
Code :
- <logic:iterate id="correspondance" name="listeCorrespondances">
- <tr>
- <td><bean:write name="correspondance[0]"/></td>
- <td><bean:write name="correspondance[1]"/></td>
- <td><bean:write name="correspondance[2]"/></td>
- <td><bean:write name="correspondance[3]"/></td>
- <td><bean:write name="correspondance[4]"/></td>
- <td><bean:write name="correspondance[5]"/></td>
- <td><bean:write name="correspondance[6]"/></td>
- <td><bean:write name="correspondance[7]"/></td>
- <td><bean:write name="correspondance[8]"/></td>
- </tr>
- </logic:iterate>
|
Où listeCorrespondance est de type ArrayList<ArrayList<String>>, donc correspondance est un ArrayList<String>. Et donc je veux afficher, pour chaque ligne, les différentes chaines.
Le hic, c'est que je ne sais pas comment accéder à une case spécifique du tableau correspondance...