Hai All, Is it possible to call Perl from java. If possible please let me know. For calling perl from java ,what are the requirement whether we have to include any jar files or something releated to perl
You can use Java's exec() capabilities to start a Perl process just like you can run other applications. You must handle the resulting standard in, out and error streams as discussed many times in this and other forums. You will have to have a Perl interpreter installed on your system, but nothing extra on the Java side. Bill
Where did you expect the output to go? See the Javadocs for java.lang.Process - paying especial attention to the discussion of the input, output and error streams. Bill