|
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
|