파일 업로드 / 다운로드 구현 (1) - 파일 업로드
파일 다운로드를 하기위해서는 업로드할때 경로와 파일이름을 알아야 한다. file을 통해 받은 파일경로를 FileInputStream 통해 받고 while문을 통해 조금씩 다운을 받을수 있다. @WebServlet("/FileDown") String filePath = currentDirPath + "\\" + fileName; // 파일경로 File file = new File(filePath); System.out.println(filePath); //파일 경로를 알수있다 try { OutputStream out = response.getOutputStream(); response.setHeader("Cache-Control", "no-chche"); response.addHeader("Cache-Co..
web/업로드 & 다운로드
2021. 1. 12. 13:12