Added forgotten file
This commit is contained in:
parent
061518faec
commit
f3bb7f3d23
1 changed files with 28 additions and 0 deletions
28
src/clojurefx/FXClassLoader.java
Normal file
28
src/clojurefx/FXClassLoader.java
Normal file
|
@ -0,0 +1,28 @@
|
|||
package clojurefx;
|
||||
|
||||
public class FXClassLoader {
|
||||
|
||||
public static Class loadClass(String className, byte[] b) {
|
||||
//override classDefine (as it is protected) and define the class.
|
||||
Class clazz = null;
|
||||
try {
|
||||
ClassLoader loader = ClassLoader.getSystemClassLoader();
|
||||
Class cls = Class.forName("java.lang.ClassLoader");
|
||||
java.lang.reflect.Method method =
|
||||
cls.getDeclaredMethod("defineClass", new Class[] { String.class, byte[].class, int.class, int.class });
|
||||
|
||||
// protected method invocaton
|
||||
method.setAccessible(true);
|
||||
try {
|
||||
Object[] args = new Object[] { className, b, new Integer(0), new Integer(b.length)};
|
||||
clazz = (Class) method.invoke(loader, args);
|
||||
} finally {
|
||||
method.setAccessible(false);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
return clazz;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue