본문 바로가기
Web Programing!/JAVA / JSP

[JSP] 파일생성 및 내용넣기

by 어설픈봉봉이 2013. 2. 26.
반응형
SMALL

 

 

 

<%@ 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();
}
%>

 

 

 

반응형