> Or a simpler thing to do at any point would be something like > > ClassLoader loader = Thread.currentThread().getContextClassLoader(); > if (loader instanceof URLClassLoader) { > URL[] urls = loader.getURLs(); Make that URL[] urls = ((URLClassLoader)loader).getURLs(); > for (int i = 0; i < urls.length; i++) > System.out.println(urls[i]); > } > > I'm not 100% certain this will work, but it seems worth a try just to see > what the classpath looks like. Scott
- Re: Parsing error... Peter Sylvester
- Re: Parsing error... Scott Nichol
- Re: Parsing error... David Turner
- Re: Parsing error... Scott Nichol
- Re: Parsing error... David Turner
- Re: Parsing error... Scott Nichol
- Re: Parsing error... David Turner
- Re: Parsing error... David Turner
- Re: Parsing error... Scott Nichol
- Re: Parsing error... Scott Nichol
- Re: Parsing error... Scott Nichol
- Re: Parsing error... David Turner
- Re: Parsing error... Scott Nichol
- Re: Parsing error... David Turner
- Re: Parsing error... Scott Nichol
- Re: Parsing error... David Turner
- Re: Parsing error... William Brogden
- Re: Parsing error... David Turner
- Re: Parsing error... Scott Nichol
- Re: Parsing error... David Turner
- Re: Parsing error... Scott Nichol