help:i need a code for making a new text file then adding 1 blank line

i have done makng load, edit and save for a command line text editor. now my problem is, i dont know how to make a new blank text file and store it on the current directory. and i need to have that new text have 1 blank line with full of white space. help please.
[270 byte] By [Aldricha] at [2007-10-2 6:44:31]
# 1
PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter("NewBlankTextFile.txt")));pw.println("");pw.close();
hiwaa at 2007-7-16 13:53:03 > top of Java-index,Java Essentials,Java Programming...