public static void main(String[] args) throws Exception{
Class clazz = Class.forName("com.mantis.hc.sale.dto.response.ExamAssistCustomerQueryRespDTO");
Class clazz1 = ExamAssistCustomerQueryRespDTO.class;
ExamAssistCustomerQueryRespDTO examAssistCustomerQueryRespDTO = new ExamAssistCustomerQueryRespDTO();
examAssistCustomerQueryRespDTO.setAccount("qweqweqweqweqw");
String attachmenturl = (String) clazz.getMethod("getAccount").invoke(examAssistCustomerQueryRespDTO);//执行方法
String attachmenturl1 = (String) clazz1.getMethod("getAccount").invoke(examAssistCustomerQueryRespDTO);//执行方法
System.out.println(attachmenturl);
System.out.println(attachmenturl1);
}
本文由 小马哥 创作,采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
最后编辑时间为:
2020/07/07 23:08