오류코드
if(mainphotofile != null && !mainphotofile.isEmpty()) {//파일이 존재한다면
filename=mainphotofile.getOriginalFilename();
filesize=mainphotofile.getSize();
try {
ServletContext application = req.getSession().getServletContext();
String path=application.getRealPath("/storage"); //실제 물리적인 경로
mainphotofile.transferTo(new File(path + "\\" + filename)); //파일저장
System.out.println(path);
}catch (Exception e) {
System.out.println(e);
}//try end
}//if end
오류 해결 코드
if (mainphotofile != null && !mainphotofile.isEmpty()) {
filename = mainphotofile.getOriginalFilename();
filesize = mainphotofile.getSize();
try {
ServletContext application = req.getSession().getServletContext();
String path = application.getRealPath("/storage"); // 실제 물리적인 경로
// 파일 경로와 파일명을 올바르게 합쳐서 파일 객체 생성
File file = new File(path, filename);
// 파일 저장
mainphotofile.transferTo(file);
System.out.println(path);
} catch (Exception e) {
System.out.println(e);
}
}