View Single Post
  #2 (permalink)  
Old 03-07-2008, 11:43 AM
sk_shadul sk_shadul is offline
Member
 
Join Date: Mar 2008
Posts: 5
sk_shadul is on a distinguished road
hi,

If you want to create a text file, create an object of a file which should have an argument of full path where you want to create.

import java.io.File.*;
File newFile= new File("FullPath");
// operations

Hope, this information will help you.

Regards,
sk_shadul
Reply With Quote