Skip to main content
1-Visitor
September 1, 2015
Solved

write to a local file

  • September 1, 2015
  • 1 reply
  • 1758 views

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.

    Best answer by jgorsline

    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();

    1 reply

    jgorsline1-VisitorAnswer
    1-Visitor
    September 1, 2015

    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();

    16-Pearl
    September 17, 2015

    Hello Hanumant,

    Did Jeremy's response resolve this issue for you?  If so, could you click on the25153012_3loy.pnglink 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