How can I launch a Java t开发者_JAVA技巧est suite using Perl?
You can make use of system function.
system("java Sample");
I would use the JMX module if possible.
You can use system
or exec
to issue the relevant java ...
command line, e.g.:
system('java ClassName some arguments here');
精彩评论