Hi,

What does the error say?

You can write a string value to a text file like this:
FileWriter writer = new FileWriter("test.txt");
writer.write("this is a test file");
writer.close();




If you try this, what error do you get?

Regards,
Geert Arys