方法一:
String baseFolder = this.getServletConfig().getServletContext().getRealPath("/").replace("\\", "/");
方法二:
public String getRealPath(){
String folderPath=this.getClass().getClassLoader().getResource("").getPath();
String realPath = folderPath.substring(0, folderPath.indexOf("WEB-INF/classes"));
return realPath;
}
String baseFolder = this.getServletConfig().getServletContext().getRealPath("/").replace("\\", "/");
方法二:
public String getRealPath(){
String folderPath=this.getClass().getClassLoader().getResource("").getPath();
String realPath = folderPath.substring(0, folderPath.indexOf("WEB-INF/classes"));
return realPath;
}