java:验证文本区域,单选按钮和复选框

时间:2013-06-14 11:04:16

标签: java

如何验证文本文件在servlet中是否应包含至少20个字符以及radiobutton和checkbox?

if(aboutme=="")
            {
                String message6 = "OOps!!! required field aboutme";
                request.setAttribute("message6", message6);
            }
            if(aboutme.length()<20)
            {
                String length4 = "This column should atleast be of 20 characters!!";
                request.setAttribute("length4", length4);
            }

此代码无效:( 请指导我。

1 个答案:

答案 0 :(得分:1)

如果你需要比较String使用equals()

if(aboutme.equals(""))