/**
* 得到文件保存的路径
*
* @return
*/
public String getPath() {
System.out.println("*********");
String path1 = Thread.currentThread().getContextClassLoader().getResource("").getPath();//获取当前资源的虚拟路径
System.out.println(path1);
String currentProjectName = this.request.getContextPath();//获取当前项目名称
System.out.println(this.request.getContextPath());
int num = path1.indexOf(".metadata");
String testPath = path1.substring(1, num).replace('/', '\\') +currentProjectName + "\\" + this.getDirectory()
+ "\\";
System.out.println(testPath);
File file = new File(testPath);
//判断该路径下文件是否存在,不存在则创建
if (!file.exists()) {
file.mkdirs();
}
return testPath;
}
String path = super.getServletContext().getRealPath("/") + File.separator+ this.getDirectory()
+ File.separator;
System.out.println("#####获取当前classpath的绝对url路径####");
System.out.println(this.getClass().getClassLoader().getResource("").getPath());
System.out.println(this.getClass().getClassLoader().getResource("/").getPath());
System.out.println("#####获取当前类的加载目录,如果有“/”获取当前类的所在工程路径####");
System.out.println(this.getClass().getResource("").getPath());
System.out.println(this.getClass().getResource("/").getPath());
System.out.println("#####项目绝对路径####");
System.out.println(this.getClass().getClassLoader().getResource(".").getPath());
System.out.println("#####当前文件路径####");
System.out.println(this.getServletContext().getRealPath("/"));
System.out.println(super.getServletContext().getRealPath("/"));
System.out.println(path);