Is there a ClassLoader implementation I can use to load classes from an InputStream?
I'm trying to load a JAR for which I have an InputStream into a new ClassLoader.
|
Is there a ClassLoader implementation I can use to load classes from an InputStream? I'm trying to load a JAR for which I have an InputStream into a new ClassLoader. |
|||
|
|
|
This is unlikely, as you will find if you try to do it yourself. You won't be able to randomly access an If you cache on disk, just use URLClassLoader. If you cache in memory, you'll need to create some sort of |
|||
|
|
|
I know this is not really an answer to your question regarding JAR/InputStream. But following may be an alternative solution to what you are trying to achieve. Here is some code that will add a URL to classpath. You may convert a java.io.File to URL as
|
|||
|
|