On 09/25/2013 07:56 AM, Peter Levart wrote:
Just a thought. How does URLClassLoader do the class name -> path to resource translation? Perhaps there's already some code that does this correctly and in a platform-specific way (haven't looked)...
Hi,
sun.misc.ProxyGenerator has similar capability. It chooses to reject paths that are invalid for the underlying file system (using java.nio.file APIs)...
Peter