We are troubleshooting an issue impacting community login, and it may be intermittently unavailable. Sorry for any inconvenience.
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.
Solved! Go to Solution.
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();
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();
Hello Hanumant,
Did Jeremy's response resolve this issue for you? If so, could you click on thelink in his post? This lets everyone know you found a useful solution to your issue, and is visible from those browsing threads but not browsing into them--for instance for users searching for questions similar to yours.
If Jeremy's response was not helpful, can you please let us know why it was not, and what problems you encountered, so that we can try to help you resolve this issue.
Thanks,
Kael