我的jsp页面中有一些复选框。 jsp页面中有一些其他文本字段。我可以从数据库中填充文本框的值。就像名字字段一样,我可以从数据库中获取值'myname'并在jsp页面中显示它。但我无法从数据库中获取复选框的值。就像我在我的数据库和jsp页面中有一个农业领域。现在我想如果数据库中的农业价值是1,那么jsp页面中农业的复选框也将是1。如果值为0,则取消选中该复选框。我该怎么做。请帮忙。这是我的jsp页面的代码片段。
<td><label class="desc"> Agriculture</label></td>
<td>
<html:text property="loanPurposeCodeInfoDTO.agriculture" styleClass="SingleLineTextField" size="30" tabindex="1" ></html:text>
<html:checkbox styleId="checkbox_isall" property="loanPurposeCodeInfoDTO.agriculture" ></html:checkbox>
</td>
答案 0 :(得分:1)
将loanPurposeCodeInfoDTO.agriculture
变为boolean
变量,并在数据库中的值为1时将其值设置为true
,并在数据库值为0时将其值设置为false
。