-----Mensagem original-----
De: Berin Loritsch [mailto:[EMAIL PROTECTED]

> Now, if your application gathers the JARs programatically into a
URLClassLoader
> then you may have to right a "debug" main class that skips this step.
That is
> the only thing I have run into where things may not be as good as it could
be.

Good idea!!!

Setup eclipse to use the build directory as its initial directory and

        File file = new File(".");
        URL url = file.toURL();
        URLClassLoader cl = new URLClassLoader( 
                new URL[] { url }, 
                Thread.currentThread().getContextClassLoader() );

This problem was solved! :-)

Thanks, Berin!



regards,
hammett

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to