Struts accéder à un tableau avec bean:write

Struts accéder à un tableau avec bean:write - Java - Programmation

Marsh Posté le 03-03-2010 à 10:12:29    

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 :
  1. <logic:iterate id="correspondance" name="listeCorrespondances">
  2.       <tr>
  3.         <td><bean:write name="correspondance[0]"/></td>
  4.         <td><bean:write name="correspondance[1]"/></td>
  5.         <td><bean:write name="correspondance[2]"/></td>
  6.         <td><bean:write name="correspondance[3]"/></td>
  7.         <td><bean:write name="correspondance[4]"/></td>
  8.         <td><bean:write name="correspondance[5]"/></td>
  9.         <td><bean:write name="correspondance[6]"/></td>
  10.         <td><bean:write name="correspondance[7]"/></td>
  11.         <td><bean:write name="correspondance[8]"/></td>
  12.       </tr>
  13.     </logic:iterate>


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...

Reply

Marsh Posté le 03-03-2010 à 10:12:29   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed