0

在 netbeans 6.9 中生成 Web 服务客户端时,我希望能够从配置(属性)文件(例如 dev vrs 生产 url)动态加载肥皂端点 url。当netbeans要求一个文字url然后将该url硬编码到多个对象中时,我如何才能做到这一点。

4

1 回答 1

0
URL url =  this.getClass().getResource("/package/dir/propFile.properties");
prop = new Properties();
prop.load(new FileInputStream(new File(url.getFile())));
于 2011-03-25T23:18:49.217 回答