in reply to How to call perl in Java?

I use Runtime.getRuntime().exec() to execute my Perl-scripts from Java, redirecting the output to a file, wait till the exec() has finished and then reading in the output of my Perl-script.

Very clumsy :-( ... but it works. ;-)

HTH, Rata (hoping for more elegant solutions)