我是java的新手。我正在学习超级敏捷的支柱。我的课程中有一个方法可以检查输入的特定字符的验证。能够使用regex
检查它,完全正常。但是我们需要使用另一个类中的特定方法(如common
类)。
以下是common class
的方法:
public static boolean isAplhaNumeric(boolean result,String inputString, String inputName, HttpServletRequest request){
// the method
}
我被要求在另一个班级使用它:
我如何用它来检查我的长度?
这是我行动中的正则表达式方法:
@Execute(input = "index.jsp")
public String submit() {
String iForward = "index.jsp";
// the method
return iForward;
}
private void checkErrorMessage(String value, String regex, String errorMessageKey, String arg){
// the method
}
如何在我的操作方法中使用common class
,例如我的regex
方法。谢谢。