ClassWriter cw = new ClassWriter(...);
byte[] bytes = cw.toByteArray();

I would like to create new class instance from bytes array. How do I do this? Is it possible at all?

link|improve this question

80% accept rate
1  
possible duplicate of Java: How to load Class stored as byte[] into the JVM? – bruno conde Nov 23 '10 at 17:44
@bruno conde: It looks like. We just express things in a more concise way here – denisk Nov 23 '10 at 17:54
You can use defineClass, however unless you use a custom class loader you may need to use reflections to call it as its not a public method. – Peter Lawrey Nov 23 '10 at 22:39
feedback

3 Answers

up vote 8 down vote accepted
ClassLoader.defineClass()

Reference:

link|improve this answer
1  
Nice answer but awful formatting and a java 1.4 link. Changed both. – Sean Patrick Floyd Nov 23 '10 at 17:49
thanks for editing, was struggling with that, but parser didn't want to show the link properly. – Vladimir Ivanov Nov 23 '10 at 17:50
3  
+1. Anyway, the method is protected, so you'll need a way to access it. Extending the ClassLoader and providing a public method could be a solution. – Tomas Narros Nov 23 '10 at 17:51
feedback

This is possible, and you need to use Reflection in order to achieve this. The psuedo code is:

final Class clazz = loadIntoCurrentClassLoader(bytes); //I'm assuming you wrote this already using defineClass

final YourClass foo ;
try {
    foo = (YourClass) clazz.newInstance();
}
catch (final Exception e) {
    throw new RuntimeException(e);
}
link|improve this answer
I'm pretty sure the loadIntoCurrentClassLoader(bytes) part is what the question is about :-) – Sean Patrick Floyd Nov 23 '10 at 17:49
Ok so I went a little overboard ;) – Amir Afghani Nov 23 '10 at 17:50
It's ambiguous from the way the question is phrased. – Amir Afghani Nov 23 '10 at 17:50
The point is not clazz.newInstance(). The point here was how to get clazz. Reflection does not help here, you should use classLoader.defineClass() – AlexR Nov 23 '10 at 19:03
feedback

I can create the class by extending ClassLoader and using defineClass. But then the created class has my extended ClassLoader as its ClassLoader, which causes failures when the code of my class loads other classes. Presumably I can get around this by creating my ClassLoader to delegate everything in the right way, but it's not obvious how to get this right.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.