Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Java project in Netbeans. It runs fine with Maven. So I assembled it. It contains the following code to load a file that is in the JAR:

ClassLoader loader = MyClass.class.getClassLoader();
SERVICE_URL = loader.getResource("my.wsdl");

This returns a URL like:

jar:file:/path/to/my/file/MyClass-1.0-SNAPSHOT-jar-with-dependencies.jar!/my.wsdl

but the library that needs this parameter doesn't appear to be able to use it.

Is there any way this file can be in the JAR and be referred to from the code like this?

share|improve this question
When you say "runs" do you mean the Java project compiles or the compiled application executes? – Jacob Tomaw Sep 22 '10 at 16:04
it executes - i think the lack of an exception is due to a crappy library that requires the above file rather than a problem with maven specifically. – timmy Sep 22 '10 at 16:09

1 Answer

up vote 2 down vote accepted

You may have to use ClassLoader.getResourceAsStream(), copy it to a temporary file, and then create a URL with File.toURI().toURL()

share|improve this answer
Thanks a lot, this worked. – timmy Sep 23 '10 at 9:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.