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上运行它时它有一个空值