本文主要是介绍servlet用反射代替if..else,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
String methodName = request.getParameter("method");
Method method = this.getClass().getDeclaredMethod(methodName,HttpServletRequest.class, HttpServletResponse.class);
method.invoke(this, request, response);
这篇关于servlet用反射代替if..else的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!