개발언어/Jsp(5)
-
[JSP] 파일업로드 웹루트 폴더 생성
cos 라이브러리 사용시 웹루트에 폴더가 없을경우 폴더 생성 String tempSavePath= request.getRealPath(File.separator) + "Files\\tempXls\\"; //경로 String savePath = tempSavePath.replace('\\','/'); //구분자 리플레이스 File targetDir = new File(savePath); // 디렉토리가 없을 경우 생성 if(!targetDir.exists()) { targetDir.mkdirs(); }
2010.04.28 -
[JSP] get방식 한글 처리 Encode , Decode
[Encode] 와 같이 Import 시키는 것은 기본.. 예제1) mng_dept_nm= 와 같이 변수를 처리하여 보낸다.. 예제2) [Decode] 와 같이 Import 시키는 것은 기본.. String fileNameEncode = request.getParameter( "FILE_NM" ); String sFileName = java.net.URLDecoder.decode(fileNameEncode);
2010.04.28 -
[JSP] 세션 무효화 (로그아웃)
session.invalidate(); 세션 무효화 ,모든 세션을 날려버린다
2010.04.28 -
[JSP] Java 메일 서버(james) 설치 및 환경 구축
---------------------------------------------------- 1단계 : 메일 서버 다운로드 ---------------------------------------------------- 자바의 메일서버는 아파치에서 제공하는 james(Java Apache Mail Enterprise Server) 서버를 이용할 수 있다 서버 다운로드 ==> http://james.apache.org ---------------------------------------------------- 2단계 : 메일 서버 설치 ---------------------------------------------------- 설치방법은 간단하다, 다운로드 받은 파일의 압축을 풀면되는데, 주의 할점은 ..
2010.04.28 -
[JSP] Java 메일 발송에 필요한 라이브러리 다운로드 및 소스작성
------------------------------------------------------ 1단계: 라이브러리 다운로드 ------------------------------------------------------ JAVA로 이메일을 발송하려면 2개의 라이브러리가 필요한데, 각각 다음과 같다. 1.JavaMail http://java.sun.com/products/javamail/downloads/index.html 2.JAF http://java.sun.com/products/javabeans/jaf/downloads/index.html ------------------------------------------------------ 2단계: 압축풀기 ----------------------..
2010.04.28