如何验证文本文件在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);
}
此代码无效:( 请指导我。
答案 0 :(得分:1)
如果你需要比较String使用equals()
:
if(aboutme.equals(""))