Re: Turn class to byte array as if reading class file
Posted By:
milo_mindbender
Posted On:
Monday, April 9, 2001 10:08 AM
This sounds similar to class loading on a thin client - check out
http://www.javaworld.com/javaworld/javatips/jw-javatip39.html
for tips on class loading over a network -theres soem 'code that implements a URL connetion -> returning a class object as an array of bytes
see: method byte[] loadClassBytes(String className) on class URLClassLoader extends MultiClassLoader
on that link.
hope that this helps
:)