码迷,mamicode.com
首页 > 其他好文 > 详细

getParameter百科

时间:2015-11-17 01:40:20      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

获取数据库中的参数数据

getParameter().   request.getParameter("username");其中的这个username 是接受前台的参数

 

比如index.jsp
...

<form action="tempServlet">中的action 中输入你想要将该表单提交到的action或servlet.
<input type ="text" name="username">

...tempServlet.java

String str = request.getParameter("username");

参数username就是从index.jsp页面来的...

 

getParameter百科

标签:

原文地址:http://www.cnblogs.com/wolf-miaoqing/p/4970497.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!