Hi, I have a program written in Perl. I want to run the Perl program using Java. If there is a command which can allow me to call the perl program from Java program, please advise me.regards
[234 byte] By [RakeshKumar] at [2007-9-26 1:32:59]
The most easy way is to use Runtime class to call "perl" to run your perl script.String sCmd = "c:\\yourPerlScriptLoc\\yourPerlScript.pl";Process p = Runtime.getRuntime().exec(sCmd);