在工作当中经常遇到反编译后的jar文件,并要传入参数了解其中的某些方法的输出,想到Java里面的反射可以实现加载jar文件并调用其中的方法来达到自己的目的.就写了个Demo代码. 以下的类可以编译生成hello.jar文件. package org.lele.fatpanda; public class Util { public static String myName; /* * 无参数,无返回值的方法. */ public static void getVersion() { System