in reply to Re^2: running jar file with multiple arguments in perl
in thread running jar file with multiple arguments in perl

btw, ive also try :
OPEN PIPE, "|java -jar program.jar"; open FH, /abc.txt while (my $res = <FH>) print PIPE "$res"; close FH; close PIPE;