<%@ page import="java.io.*" %>
<%
String sDir = "";
String sFileName = "";
String sFilePath = "";
String sText = "";
try {
sDir = ""; // 디렉토리명
sFileName = ""; // 파일명
sFilePath = sDir + sFileName; // 파일경로
// 디렉토리 생성.
try {
File dir = new File(sDir);
dir.mkdirs();
} catch ( Exception e ) {}
File sFile = new File(sFilePath); // file 객체생성
sFile.createNewFile(); // 파일 생성
//파일쓰기
FileWriter fw = new FileWriter(sFilePath); // 객체 생성, 같은 이름의 파일명이 있으면 생성안함.
sText = "안녕하세요. \n"
+ "Hello. \n"
+ "반갑습니다. \n"; // 생성할 파일 내용
fw.write(sText); // 파일에 내용 삽입.
fw.close();
}catch(Exception e){
e.printStackTrace();
}
%>
'Web Programing! > JAVA / JSP' 카테고리의 다른 글
JSP 한글깨짐 현상 처리 ( get 방식, post 방식 ) (0) | 2013.07.24 |
---|---|
[JAVA] java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory 에러 (0) | 2013.04.01 |
[JSP] 파일내용읽기 (0) | 2013.02.27 |
jdom 라이브러리 사용하여 XML파일 읽어오기 (2) | 2013.02.25 |
jdom 라이브러리 사용하여 XML 파일 만들기 (0) | 2013.02.22 |
[JSP] 랜덤 로또 번호 가져오기 (0) | 2012.12.14 |
[에러모음] getOutputStream() has already been called for this response (0) | 2012.10.19 |