1819202122232425
import org.apache.harmony.tests.java.lang.instrument.HelloWorldClass; public class InstrumentTest { public static void premain(String agentArgs, Instrumentation inst) { HelloWorldClass hwc = new HelloWorldClass(); hwc.printMessage(); } }