How We Use Reading Functions in Mendix

0
Hi All, I am from .NET background, there is one concept Reading function in .NET.   My Question, is there any Reading Function Concept in Mendix or Any Alternative in Place of Reading Function in Mendix.   Thank you in Advance 
asked
1 answers
0

hii  vijay malviya,

to achieve reading function’s functionality you can use java actions in microflows and in java we have multiple classes to use reading function like:

import java.io.FileReader;
import java.io.FileWriter;
import java.io.BufferedReader;
import java.io.PrintWriter;
import java.io.IOException;
answered