开发者

How can I launch Java tests using Perl?

开发者 https://www.devze.com 2022-12-21 16:05 出处:网络
How can I launch a Java t开发者_JAVA技巧est suite using Perl?You can make use of system function.

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');
0

精彩评论

暂无评论...
验证码 换一张
取 消