JSP中實現遮蔽次的功能

bluesky006516發表於2003-11-18
我用JSP實現表單提交時的遮蔽詞功能,可是隻有在有兩個遮蔽詞時,才報錯,這是程式碼,請幫我看以下:
package sd;

public class screenword {
public screenword()
{}
/**********************
* 判斷是否含有敏感詞
* @param vc_action 物品描述
* @param str_screenword 敏感詞
*********************/

public boolean setscreenword(String vc_action,String [][] str_screenword)
{
boolean is_screenword=false;
for(int i=0;i<str_screenword.length;i++)
for(int j=0;j<str_screenword.length;j++)
{

if(vc_action.indexOf(str_screenword[j])>0)
{
is_screenword=true;
return is_screenword;
}

}
return is_screenword;
}
}

相關文章