我想将我的项目导出到可运行的 JAR(在 Eclipse 中)。但是我有一个带有本地路径的代码部分!如何避免本地路径问题?
非常感谢你帮助我。
static {
URL url = null;
WebServiceException e = null;
try {
url = new URL("file:/C:/myWorkspace/myProject/folder/data.wsdl");
} catch (MalformedURLException ex) {
e = new WebServiceException(ex);
}
APISERVICE_WSDL_LOCATION = url;
APISERVICE_EXCEPTION = e;
}