01.JAVA/Java2009. 4. 6. 14:47
반응형
public void makeLog(){
               
        String filePath = "D:/SQLException.log";       
        try {
            PrintWriter pw= new PrintWriter(new FileWriter(filePath, true));
            pw.write(getLogTime());
            pw.write(" : SQLException");
            pw.write("\n");
            pw.close();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }              
    }

값이 true일 경우는 File이어쓰기
값이 false일 경우는 File새로쓰기

File이 없는 경우 자동으로 생성도 해준다.
Posted by 1010