当前位置: 技术问答>java相关
如何取得jsp中input 类型为 radio的数据?
来源: 互联网 发布时间:2017-04-05
本文导语: 页面中存在两个radio的类型,一个是性别,一个是婚否,如何取得该字段的value? | request.getParameter("sex"); request.getParameter("ishun"); | 如果是char就不用转,直接赋值就可以了 转i...
页面中存在两个radio的类型,一个是性别,一个是婚否,如何取得该字段的value?
|
request.getParameter("sex");
request.getParameter("ishun");
|
如果是char就不用转,直接赋值就可以了
转int int i=Integer.parseInteger("要被转换的字符串");
转boolean boolean b=Boolean.getBoolean("要被转换的字符串");
转float float f=Float.parseFloat("要被转换的字符串");
其它的类似
转int int i=Integer.parseInteger("要被转换的字符串");
转boolean boolean b=Boolean.getBoolean("要被转换的字符串");
转float float f=Float.parseFloat("要被转换的字符串");
其它的类似