1、获取服务器指定目录路径path
2、复制文件
参考代码
String dir = "/a/b/c/";
String path = request.getSession().getServletContext().getRealPath(dir)+"\\"+file.getOriginalFilename();
//path 为服务器在硬盘的绝对路径 如H:\tomcat\webapps\youproject\a\b\c\文件名.txt
File newFile=new File(path);
file.transferTo(newFile); //复制文件