Solved
write to a local file
Hi,
Is there any API function to write data on local file.
Ex:
I want to write 'Hello Word' in the file located on my machine through Script.
Hi,
Is there any API function to write data on local file.
Ex:
I want to write 'Hello Word' in the file located on my machine through Script.
Hanumant,
You can write to a local file using the standard Java IO bean.
For example:
var fw = new java.io.FileWriter("<filename>");
fw.write("Hello World \n");
fw.close();
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.