4

我发现这个问题非常令人困惑(但也很有趣),因此我想在这里向人们寻求见解。

我一直在自学 JSP 和相关技术。我要做的是从 JSP 中检索参数到 servlet,然后将它们与 If() 一起使用。这是我的编码的一部分。

if ((request.getParameter("ID_A") != null || request.getParameter("Password_A") != null) &&
    (request.getParameter("ID_B") != null || request.getParameter("Password_B") != null)) {

        errorMessage = "Information is detected for the both side";
        request.setAttribute("errorMessage", errorMessage);
        request.getRequestDispatcher("4_enter_personal_info.jsp").forward(request, response);
    } // Other conditions...

这是 JSP 的一部分(上一步)

<form action="PersonalInfor_to_confirmation_servlet" method="POST">
    <h2>For an existing customer</h2>
        <p>Customer ID</p>
        <input type="text" name="ID_A" value="" />
        <p>Password</p>
        <input type="text" name="Password_A" value="" />
        <br>
    <h2>For a new customer</h2>
        <p>Set your customer ID</p>
        <input type="text" name="ID_B" value="" />
        <p>Set your password</p>
        <input type="text" name="Password_B" value="" />
    //There are other lines
</form>

我正在努力确保,当客户端在双方(For an existing customer/For a new customer)上输入信息时,JSP 上会出现上述消息"Information is detected for the both side"

但是,即使所有文本框都是空白的,也会出现错误消息。因此,request.getParameter( )即使我将它们设为空,上述所有方法都不包含空值。

即使我能想出其他算法,我也想知道这种现象发生的原因。

任何建议将被认真考虑。

4

2 回答 2

6

块中的语句if运行的原因是因为该字段存在。如果您不想在文本框为空时运行它,您应该在条件中包含检查参数是否包含空字符串,例如:

request.getParameter("ID_A") != null && !request.getParameter("ID_A").isEmpty()
|| request.getParameter("Password_A") && !request.getParameter("Password_A").isEmpty()
...

所以上面所有的 request.getParameter( ) 方法都不包含空值,即使我将它们设为空。

是的。getParamater()返回值时null,表示在表单中找不到具有该名称的字段。使用另一种方法:isEmpty()检查字段是否为空。如:

request.getParameter("noSuchField")==null //true
request.getParameter("ID_A")==null //false
request.getParameter("ID_A").isEmpty() //true
于 2015-01-13T01:01:35.107 回答
2
<input type="text" name="ID_A" value="" />

当您以这种方式提交表单时,您将拥有ID_A作为键,并且""(空字符串)作为值。获得 null 的方法是根本不发送ID_A任何值。

解决此问题的一个好方法是显式检查空字符串:

private boolean isNullOrBlank(final String s) {
    return s == null || s.trim().length() == 0;
}

if ((isNullOrBlank(request.getParameter("ID_A"))||
     isNullOrBlank(request.getParameter("Password_A"))
    ) &&
    (isNullOrBlank(request.getParameter("ID_B"))|| 
     isNullOrBlank(request.getParameter("Password_B")))) {
 ...
}
于 2015-01-13T01:01:44.763 回答