package stuff; import java.io.IOException; public class DataWriter { public static void main(String[] args) throws IOException { java.io.File file = new j
You need to close the file with:
output.close();