Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I want to get the name of a file in a url: http://localhost:8088/references?fileName=toto.txt
and put it in tJavaFlex instead of the "D:\test2.bak" file location.
my initial code on tJavaFlex:
Bak bak = BakReader.getInstance().read("D:\test2.bak", "utf-8");
Thanks
I think this might answer your question...
https://help.talend.com/reader/jomWd_GKqAmTZviwG_oxHQ/RsnQ2W4ODJGHy0qlEigtBQ
thanks for your response.
I want to get toto.txt from the url as parameter to replace the file location in tJavaFLex.
My code initial in tJavaFlex today is:
Bak bak = BakReader.getInstance().read("D:\test2.bak", "utf-8");
my url :
http://localhost:8088/references?fileName=toto.txt.
What I want is:
Bak bak = BakReader.getInstance().read("D:\toto.txt, "utf-8");
Thank you