在我的申请中,我有以下同仁阶层。
public class Constants {
...
public static final int MAX_NUM_OF_PICTURES = 2
...
}
在我使用共同财产调查方案之前,我设法积极投入领域,根据这一不变情况重载档案:
<%
for (int i = 1; i < Constants.MAX_NUM_OF_PICTURES + 1; i++) {
%>
<tr>
<td>Upload Picture <%= i %></td>
<td><input name="<%= i%>" type="file" /></td>
</tr>
<tr>
<td>Description <%= i %></td>
<td><input type="text" name="<%= "description" + i%>" id="description" /></td>
</tr>
<%
}
%>
目前,我正试图利用联合武装部队完成上述任务。 如果这些投入领域不是动态生成的,我可以很容易地在我的背信标中界定以下特性:
@ManagedBean
@RequestScoped
public class MrBean {
...
private UploadedFile picture1;
private String pictDescription1;
...
}
然而,由于这些领域目前是动态生成的,我无法知道,我需要事先确定多少财产,以掌握这些上载的档案。
如果有人能就我应如何处理这一问题向我提出建议,我将非常感谢。
最佳做法
James Tran