您的位置:首页 > 产品设计 > UI/UE

request.getParameterMap() 获取页面表单的值

2012-08-03 10:09 537 查看
jsp页面代码:

<form:form id="form1" name="form1" method="post"
action="${turnToSaveOutcomeViewURL}" enctype="multipart/form-data">
<table style="text-align: center; width: 100%;">
<tr>
<td class="tdRight">
成果类型:
</td>
<td class="tdLeft">
<select id="ocType" name="ocType">
<option value="1">
成果类型1
</option>
<option value="2">
成果类型2
</option>
</select>
</td>
</tr>
<tr>
<td class="tdRight">
成果名称:
</td>
<td class="tdLeft">
<input id="ocName" name="ocName"  type="text"/>
</td>
</tr>
<tr>
<td class="tdRight">
获取时间:
</td>
<td class="tdLeft">
<input type="text" id="gotOCDate" name="gotOCDate"
onclick="new Calendar().show(document.getElementById('gotOCDate'));" />
</td>
</tr>
<tr>
<td class="tdCenter" colspan="2">
<a id="submitBtn1" class="majorButton"><span>提交</span> </a>
</td>
</tr>
</table>
</form:form>


后台获取各项值的代码:

Map<String, String[]> map = request.getParameterMap();
System.out.println(map.size());
System.out.println("map:ocName  " + map.get("ocName")[0]);
System.out.println("map:ocType  " + map.get("ocType")[0]);
System.out.println("map:gotOCDate  " + map.get("gotOCDate")[0]);


控制台打印结果:

4

map:ocName  asdfasdfasdfasdfasdfasd

map:ocType  1

map:gotOCDate  2012-08-30
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  class calendar jsp string