How exactly does URLClassLoader work? java

484 Views Asked by At

So I know how to use URLClassLoader, and I know what it does, what I want to know is how exactly does it do it.

Basically I'm asking: Is it a live stream? Or does it do a temporary download and reads the classes locally?

So if you where continually calling a method from a class you are loading with the URLClassLoader and you lost internet randomly would your java snip-it fail?

Or is it a one time thing and downloads it and if you lost internet it would be ok because it already downloaded it at the beginning?

Any information would be awesome, thank you.

1

There are 1 best solutions below

0
On

No. The classloader loads and caches content from the URL and does not refetch.

All custom class loader implementations have to work through defineClass which takes a byte[]. No streaming is possible with this API -- you either have all the bytes for the class or you don't.