获取项目中文件夹的绝对路径

String classpath = this.getClass().getResource("/").getPath().replaceFirst("/", "");

String fileDir = classpath.replaceAll("WEB-INF/classes/", "upload");

upload为目标文件夹,fileDir 为路径

你可能感兴趣的:(java)