/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package bytearrayioapp; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.io.Writer; /** * * @author ICI Makati */ public class DeleteData { 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(); } }