我的 .jsp 文件中有以下代码。我有一个发布到这个 jsp 的 html 表单。我想检查参数是否为空,如果它为空并且是否包含字母,则重定向回表单。以下条件似乎不起作用。它只是忽略这一点并提交带有空值的 sql。
我哪里错了?
if(request.getParameter("formPost") == null)
response.sendRedirect("index.html");
else
PostVar = request.getParameter("formPost");