0

我需要获取 jar 文件中资源的 URL。我将此 URL 用作我的服务调用的参数。我的以下代码因“没有这样的文件或目录”错误而失败。

File file = new File(classLoader.getResource("AXLAPI.wsdl").getFile());
final URL wsdlURL = new URL(this.getClass().getResource(this.getClass().getSimpleName() +".class"),file.toString());
String endpoint = "https://<machine>:8443/axl/";
AXLAPIService ss = new AXLAPIService( wsdlURL );

以下是执行此操作时看到的错误 -

Failed to access the WSDL at: file:/blah/blah/blah.jar!/AXLAPI.wsdl. It failed with: 
/blah/blah/blah.jar!/AXLAPI.wsdl (No such file or directory).

我真的很感激任何处理这个问题的建议!

4

1 回答 1

2

我相信正确的网址应该是

jar:file:/blah/blah/blah.jar!/AXLAPI.wsdl

于 2016-07-27T01:43:39.983 回答