Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 Perl 启动 Java 测试套件?
您可以使用系统功能。
system("java Sample");
如果可能的话,我会使用JMX模块。
您可以使用system或exec发出相关java ...命令行,例如:
system
exec
java ...
system('java ClassName some arguments here');