Class<?> _clazz = Class.forName(_clazzName);
if (_clazz != null) {
     Method _getInstance = _clazz.getMethod("getInstance");
     Object _handler = _getInstance.invoke(_clazz);
     Method _method = _clazz.getMethod(_methodName, METHOD_PARAM);
     if (_method != null) {
            _method.invoke(_clazz.cast(_handler), session, _msg);
     }
 }

 

相关文章:

  • 2022-12-23
  • 2021-10-15
  • 2022-12-23
  • 2021-08-06
  • 2022-12-23
  • 2021-11-30
  • 2022-02-18
  • 2021-11-22
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2021-08-06
相关资源
相似解决方案