[JSP] 파일업로드 웹루트 폴더 생성
2010. 4. 28. 16:17ㆍ개발언어/Jsp
cos 라이브러리 사용시 웹루트에 폴더가 없을경우 폴더 생성
String tempSavePath= request.getRealPath(File.separator) + "Files\\tempXls\\"; //경로
String savePath = tempSavePath.replace('\\','/'); //구분자 리플레이스
File targetDir = new File(savePath);
// 디렉토리가 없을 경우 생성
if(!targetDir.exists()) {
targetDir.mkdirs();
}
'개발언어 > Jsp' 카테고리의 다른 글
[JSP] get방식 한글 처리 Encode , Decode (0) | 2010.04.28 |
---|---|
[JSP] 세션 무효화 (로그아웃) (0) | 2010.04.28 |
[JSP] Java 메일 서버(james) 설치 및 환경 구축 (0) | 2010.04.28 |
[JSP] Java 메일 발송에 필요한 라이브러리 다운로드 및 소스작성 (0) | 2010.04.28 |