/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author ICI Makati */ import java.io.*; public class DeleteData { /** * @param args the command line arguments */ public static void main(String[] args) throws IOException { Writer output = null; File file = new File("write.txt"); output = new BufferedWriter(new FileWriter(file)); output.close(); } }