in reply to How to call .jar files from perl program

You could also use Inline::Java to call jar files. You essentially put all your java code in a string plus the import line for the jar. I usually declare a simple java class that calls the jar code. The Inline::Java will generate the translation from the Java class to the perl domain then you simply instantiate the object in perl and make the call to the method that in turn calls the jar code.
  • Comment on Re: How to call .jar files from perl program

Replies are listed 'Best First'.
Re^2: How to call .jar files from perl program
by Anonymous Monk on Jun 22, 2009 at 11:55 UTC
    Can you please give me an example how do you call a jar from perl so that both the application run simultaniously?