bhaskar_219 has asked for the wisdom of the Perl Monks concerning the following question:

I written one perl script and this perl script executing the jar file to fetch records from database.

Like

$records =`java -jar GetData.jar`;

using backtics

So i want to make this perl script and jar file also as a single executable file.

Replies are listed 'Best First'.
Re: How to make perl script and jar file to single executable file
by marto (Cardinal) on Sep 05, 2010 at 09:29 UTC

    Do some research into using Inline::Java and pp to create the executable.

Re: How to make perl script and jar file to single executable file
by Anonymous Monk on Sep 05, 2010 at 09:34 UTC