Get Some Free Products at your Door Step. Just feed ur Address in dis Link...!!

Thursday, October 6, 2011

create a new empty file

import java.io.File;
public class MainClass
{
public static void main(String[] a)throws Exception
{
File file = new File("c:\\test\\test.txt");
file.createNewFile();
}
}

No comments:

Post a Comment