java.net.URL r = this.getClass()。getClassLoader()。getResource(" web.xml");返回null

时间:2016-12-01 06:27:53

标签: jboss5.x jboss6.x

java.net.URL r = this.getClass().getClassLoader().getResource("web.xml");

String filePath = r.getFile();
log.info("filePath :"+filePath);
System.out.println("filePath :"+filePath);
String result = new File(new File(new File(filePath).getParent()).getParent()).getParent();
System.out.println("result :"+result);

在JBoss5上运行时,它有一个包含应用程序路径的值,但是当我在JBoss6上运行它时它有一个空值

0 个答案:

没有答案