String projectPath = this.getClass().getResource("/").getPath().substring(1).replace() + "Server-Configuration.xml";
web应用运行时指向的是你tomcat目录/webapps/应用/web-inf/classes/Server-Configuration.xml
望采纳!
注意,如projectPath中空格的经过base64编码转换后变成了"%20",你还得replace("%20" , " ")。
D:\Tomact\apache-tomcat-6.0.20\conf\server.xml
该端口号码也是在这里
class.getResourceAsStream("/xx.xml")这就是项目的绝对路径了 , class是class对象
//得到文件
File is=new File("xmlFile/CreateXml.xml");
SAXReader reader=new SAXReader();
//得到Document对象
Document doc=reader.read(is);
//得到Element节点集合
List
//循环遍历