0

テーブルの行をダンプする JSP でメソッドを作成しています。

<%!  
    void dumpRows(List<MyClass> obList){  
        int a = 10;  
        for(int i = 0; i<100; i++){  
%>  
   //lots of HTML code which uses the variables from the dumpRows method  
   <td> <%=a*i%> </td>  
<%  
        }//for loop ends  
    }//method ends  
%>  

しかし、それはエラーになっています。JSP の文法に問題があります。どうすればそれを達成できるか教えてください

4

2 に答える 2

2
<%!  
    void dumpRows(List<MyClass> obList){  
        int a = 10;  
        for(int i = 0; i<100; i++){  
%>  
   //lots of HTML code which uses the variables from the dumpRows method  
   <td> <%=a*i%> </td>                 //here problem
<%  
        }//for loop ends  
    }//method ends  
%>

<%=a*i%> を印刷するには、このように記述します。

于 2013-08-22T11:05:24.263 に答える