java获取项目目录下某个文件夹的地址
String realPath = System.getProperty("user.dir") + "后面是自己项目文件夹的路径"
如:
String realPath = System.getProperty("user.dir") + "\\src\\main\\...\\uploadFile";
在windows和linux下不同的获取方式
String realPath;
String os = System.getProperty("os.name");
if(os.toLowerCase().startsWith("win")){
realPath = System.getProperty("user.dir") + "\\src\\main\\...\\uploadFile";
}else{
realPath = System.getProperty("user.dir") + "/src/main/.../uploadFile";
}