Springboot获取webapp目录下的文件路径

// 获取 webapp目录
String classpath = this.getClass().getResource("/").getPath().replaceFirst("/", "").replace("/BOOT-INF/classes","/");
String filePath = classpath+"META-INF/resources/uploadFiles/员工工资批量导入模板.xlsx";
// 获取 webapp目录下uploadFiles/文件.xlsx
String filePath = classpath+"META-INF/resources/uploadFiles/文件.xlsx";
File excel = new File(filePath);

Springboot获取webapp目录下的文件路径_第1张图片
Springboot获取webapp目录下的文件路径_第2张图片

你可能感兴趣的:(java)