4546474849505152
il.add(iFactory.invoke(println)); il.add(iFactory.returnMethod(method)); // Finalize the modified class and dump it to the file: clazz.dump(new FileOutputStream("Test.class")); } }
163164165166167168169170171172173
byte[] bytes = jiapiClass.getByteCode(); if (System.getProperty("dump") != null) { try { jiapiClass.dump(new java.io.FileOutputStream(jiapiClass.getName() + ".dump")); } catch(Throwable t) { } }