2005-10-27から1日間の記事一覧

バイトコードからクラスを動的にロード

public class BytecodeClassLoader extends ClassLoader { public Object newInstance(String className, byte[] bytecode) { Object obj = null; try { defineClass(className, bytecode, 0, bytecode.length); obj = loadClass(className, true).newInstan…