While we call a jar file from the perl using the following syntax
my @args = ("java", "-jar", "Saxton.jar");
system(@args);
then it invoke the jar window and also invoke a command prompt window as well.
Can any one tell how I can disable the command prompt that is invoked while I call my jar file? I just want to run the jar file, not the command prompt.
Comment on Re^2: How to call .jar files from perl program