파일 다운로드 최신
String real= propertyService.getString("Globals.fileStorePath"); String mimetype = "application/x-msdownload"; String fileName= "다운로드 될 파일명"; File downFile = new File(real+File.separator+"","저장소 파일명"); int fSize = (int)downFile.length(); if(!downFile.exists()) { return; } response.setBufferSize(fSize); response.setContentType(mimetype); setDisposition(fileName, request, response); response.setCo..