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

85 篇文章 0 订阅

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"
							οnclick="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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值