Write data in text file in dynamics ax

Description:-

In this article we will see about how to write data into text file. You can use the TextIo X++ class or the CLRInterop. Here are 2 X++ jobs to demonstrate both approaches. you can see my other article for how to read and write text file using different classes in dynamics Ax.

Code:-

static void Job_TextIO(Args _args)
{
    TextIo textIo;
    #File
    ;
    textIo = new TextIo(@"C:\textIOtest.txt", #IO_WRITE);
    textIo.write("Line 1\n");
    textIo.write("Line 2");
}

static void Job_StreamWriter(Args _args)
{
    System.IO.StreamWriter sw;
    InteropPermission perm = new InteropPermission(InteropKind::ClrInterop);
    ;
    perm.assert();
    sw = new System.IO.StreamWriter(@"C:\test.txt");
    sw.WriteLine("Line 1");
    sw.WriteLine("Line 2");
    sw.Flush();
    sw.Close();
    sw.Dispose();
    CodeAccessPermission::revertAssert();
}

Related Posts

Previous
Next Post »

1 comments:

comments

Thanks for comments.....