通過 Method.invoke() 調用靜態方法給了我 NPE (Static method invocation via Method.invoke() gave me NPE)


問題描述

通過 Method.invoke() 調用靜態方法給了我 NPE (Static method invocation via Method.invoke() gave me NPE)

I'm dealing with Google Protobuf messages.

Since my needs are to set instance fields of an Object (some of them are Protobuff messages), I've wrote a function that retrieve via reflection the builder and through the protobuf‑java‑format recreates the message.

Here's the code

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);
 }
}

This snippet works as intended, but my doubt is in the Object builder = method.invoke(new Object()); line since when I call static methods I've always put null as actual parameter.

In this scenario I've a NullPointerException.

Have someone any idea why there is the need of a instance in the invoke() actual parameter?

Thanks Dario.

‑‑‑‑‑

參考解法

方法 1:

The javadoc for Method says the Method.invoke method signature is: "invoke(Object obj, Object... args)" It also says: "If the underlying method is static, then the specified obj argument is ignored. It may be null."

This means that your underlying method is NOT static. However you are checking to see if it is static it is not correct.

(by Dariouser1209809)

參考文件

  1. Static method invocation via Method.invoke() gave me NPE (CC BY‑SA 3.0/4.0)

#protocol-buffers #java #reflection






相關問題

通過 Method.invoke() 調用靜態方法給了我 NPE (Static method invocation via Method.invoke() gave me NPE)

python中的protobuf到json (Protobuf to json in python)

如何序列化/反序列化使用 ScalaPB 的“oneof”的 protobuf 消息? (How to serialize/deserialize a protobuf message that uses 'oneof' with ScalaPB?)

序列化和反序列化未知的繼承類型 (Serializing and deserializing unknown inherited types)

Thrift 與協議緩衝區 (Thrift vs Protocol buffers)

如何在客戶端排除導入 (How to exclude an import on client side)

為什麼當我安裝了 Tensorflow 的所有庫後,會出現無目錄錯誤? (Why do I get a no directory error, when I have installed all the libraries for Tensorflow?)

如何為 C# <proto/> 定義傳遞experimental_allow_proto3_optional 以在proto3 中啟用可選? (How to pass experimental_allow_proto3_optional for C# <proto/> definitions to enable optional in proto3?)

CentOS7 的 libprotobuf-lite.so 文件在 CentOS8 機器上工作嗎? (is libprotobuf-lite.so file from CentOS7 working in CentOS8 machine?)

protogen - 支持 <Property> 指定的語法 (protogen - support the <Property>Specified syntax)

.Net 字典類型在 protobuff (.Net dictionary type in protobuff)

為什麼 protobuf 更喜歡代碼生成器而不是運行時動態加載 (why protobuf prefer code-generator other than dynamic loading at runtime)







留言討論