比如这个怎么存入到数据库啊
<form name="form1" action="customer!save.action" method="post">
<td>运动<input type="checkbox" name="hobbies" value="运动" >
艺术<input type="checkbox" name="hobbies" value="艺术">
宅<input type="checkbox" name="customer.hobbies" value="宅" ></td></tr>
</form>
还有struct.xml中怎么跳转到方法?
<struts>
<package name="Action" extends="struts-default">
<action name="customer" class="customerAction">
<result name="toFindAll" type="redirectAction">customer!findAll</result>
</action>
</package>
</struts>
说是
JSP checkbox的值怎么存入数据库
答案:1 悬赏:60 手机版
解决时间 2021-04-11 04:42
- 提问者网友:谁的错
- 2021-04-10 05:55
最佳答案
- 五星知识达人网友:狂恋
- 2021-04-10 06:48
String[] str = request.getParameterValues("checkbox");
StringBuffer sb = new StringBuffer();
for(int i = 0; i < str.length; i++){
sb.append(str[i]);
}
直接存sb.toString()就行了。
StringBuffer sb = new StringBuffer();
for(int i = 0; i < str.length; i++){
sb.append(str[i]);
}
直接存sb.toString()就行了。
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯