0
String fieldName = (fieldchild.getAttribute("Name")); //gives field name : opcode

String fieldCustomID = (fieldchild.getAttribute("ID")); //gives id: 2022

String classTypeofField = IdNameMappingList.get(fieldCustomID).toString(); //give class name OpCodeClass

FieldSpec fieldSpec = FieldSpec.builder(**some code**, fieldName)
                                                        .build();

应该给出类似的东西

OpCodeClass opcode;

任何其他解决方法也受到赞赏。

4

1 回答 1

0

尝试ClassName.get("com.company.app", classTypeofField),将包名替换为类名。

于 2018-10-12T11:49:37.633 回答