是否可以使用MethodUtils
调用私有静态方法?
LocalDateTime d = (LocalDateTime)MethodUtils.invokeStaticMethod(Service.class,
"getNightStart",
LocalTime.of(0, 0),
LocalTime.of(8,0));
此代码抛出异常:
java.lang.NoSuchMethodException: No such accessible method: getNightStart()
如果我将方法的访问修饰符更改为public
,则可以正常工作。
答案 0 :(得分:3)
不,因为MethodUtils.invokeStaticMethod()
会调用Class.getMethod()
。即使您尝试破解修饰符,MethodUtils
也无法看到它,因为它不会看到修改后的Method
引用:
Service.class
.getDeclaredMethod("getNightStart", LocalTime.class, LocalTime.class)
.setAccessible(true);
MethodUtils.invokeStaticMethod(Service.class,
"getNightStart", LocalTime.of(0, 0), LocalTime.of(8, 0));
仍然会失败NoSuchMethodException
就像普通的反思一样:
Service.class
.getDeclaredMethod("getNightStart", LocalTime.class, LocalTime.class)
.setAccessible(true);
Method m = Service.class.getMethod("getNightStart", LocalTime.class, LocalTime.class);
m.invoke(null, LocalTime.of(0, 0), LocalTime.of(8, 0));
这仅在重用Method
对象时才有效:
Method m = Service.class.getDeclaredMethod("getNightStart", LocalTime.class, LocalTime.class);
m.setAccessible(true);
m.invoke(null, LocalTime.of(0, 0), LocalTime.of(8, 0));