SeouliteLab

[Java/자바] 파일 내용 지우는 방법 본문

프로그래밍

[Java/자바] 파일 내용 지우는 방법

Seoulite Lab 2024. 3. 8. 08:57

예제 1: FileWriter를 사용하여 파일 내용 삭제

import java.io.FileWriter;

public class FileContentClearExample {
    public static void main(String[] args) {
        String filePath = "data/sample.txt";

        try {
            FileWriter writer = new FileWriter(filePath);
            writer.write(""); // 내용을 빈 문자열로 덮어씀
            writer.close();
            System.out.println("파일 내용 삭제 성공: " + filePath);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

FileWriter를 사용하여 파일 내용을 빈 문자열로 덮어쓰는 방법입니다. 이를 통해 파일 내용을 삭제할 수 있습니다.

예제 2: PrintWriter를 사용하여 파일 내용 삭제

import java.io.File;
import java.io.PrintWriter;

public class FileContentClearExample2 {
    public static void main(String[] args) {
        String filePath = "data/sample.txt";

        try {
            PrintWriter writer = new PrintWriter(new File(filePath));
            writer.print(""); // 내용을 빈 문자열로 덮어씀
            writer.close();
            System.out.println("파일 내용 삭제 성공: " + filePath);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

PrintWriter를 사용하여 파일 내용을 빈 문자열로 덮어쓰는 방법입니다. 이를 통해 파일 내용을 삭제할 수 있습니다.