如何检查表单或值是否已设置?
我正在创建一个 jsp 表单,一旦它们在 servlet 中提交,我必须检查表单是否已设置。在 PHP 中,我使用 ISSET 函数进行检查,就像在 Servlet 中一样?
I'm creating a jsp form, once they submitted in the servlet i have to check whether the form is set or not. In PHP i use to check with the ISSET function same like how i can do it in Servlet??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 servlet 中,您可以使用 Request 对象的 getParameter 方法进行检查
In servlets you can check using getParameter method of Request Object
另一个(在我看来更具表现力的)构造将
如下所示 这里
Another (in my sense more expressive) construct would be
as shown here
Servlet 的
请求.getParameter()
用于返回作为查询字符串传递的请求参数的值以及在请求正文中编码的发布数据。该方法由接口
ServletRequest
提供 以字符串形式返回请求参数的值,如果参数不存在则返回 null。request.getParameter()
方法检索传递的参数并在浏览器上显示参数的值。PHP
isset($_REQUEST['paramname'])
的 Servlet 等效项是Servlet's
request.getParameter()
is used to return the value of a request parameter passed as query string and posted data which is encoded in the body of request.This method is provided by the interface
ServletRequest
which returns the value of a request parameter as a String, or null if the parameter does not exist. The methodrequest.getParameter()
retrieves the passed parameters and displays the value of the parameters on the browser.Servlet equivalent of PHP
isset($_REQUEST['paramname'])
is可以解决你的问题。
May solve your issue.