通过Method.invoke()的静态方法调用给了我NPE

时间:2013-02-18 10:03:11

标签: java reflection protocol-buffers

我正在处理Google Protobuf消息。

由于我需要设置Object的实例字段(其中一些是Protobuff消息),我编写了一个函数,通过反射检索构建器并通过protobuf-java-format重新创建消息。

这是代码

for (String aFieldName : objectContentMap.keySet()) {
 Object aFieldNameValue = objectContentMap.get(aFieldName);
 if (aFieldNameValue != null) {
  Field theClassField = this.instance.getField(aFieldName);
  ReflectionUtils.makeAccessible(theClassField);
  Class<?> classType = theClassField.getType();
  if (!classType.isPrimitive() && 
   GeneratedMessage.class.isAssignableFrom(classType.getSuperclass())) {
   Method method = classType.getMethod("newBuilder");
   // Since the method is static, the instance object that undergoes the call is not important, but with "null" I have a NPE...
   Object builder = method.invoke(new Object()); 
   if (builder instanceof Builder) {
    Builder newBuilder = (Builder)builder;
    InputStream asd = new ByteArrayInputStream(((String)aFieldNameValue).getBytes());
    protoMapper.merge(asd, newBuilder);
    aFieldNameValue = newBuilder.build();
   }
  }
  theClassField.set(recreatedObject, aFieldNameValue);
 }
}

此代码段按预期工作,但我怀疑是Object builder = method.invoke(new Object());行,因为当我调用静态方法时,我总是将null作为实际参数。

在这种情况下,我有一个NullPointerException。

让某人知道为什么在invoke()实际参数中需要一个实例?

感谢达里奥。

1 个答案:

答案 0 :(得分:0)

Method的javadoc说Method.invoke方法签名是:
“invoke(Object obj,Object ... args)”
它还说:
“如果底层方法是静态的,则忽略指定的obj参数。它可能为null。”

这意味着您的基础方法不是静态的。但是,您正在检查它是否是静态的,这是不正确的。